Struct BuffersFromPixmapReply
pub struct BuffersFromPixmapReply {
pub sequence: u16,
pub length: u32,
pub width: u16,
pub height: u16,
pub modifier: u64,
pub depth: u8,
pub bpp: u8,
pub strides: Vec<u32>,
pub offsets: Vec<u32>,
pub buffers: Vec<OwnedFd>,
}
Fields§
§sequence: u16
§length: u32
§width: u16
§height: u16
§modifier: u64
§depth: u8
§bpp: u8
§strides: Vec<u32>
§offsets: Vec<u32>
§buffers: Vec<OwnedFd>
Implementations§
§impl BuffersFromPixmapReply
impl BuffersFromPixmapReply
pub fn nfd(&self) -> u8
pub fn nfd(&self) -> u8
Get the value of the nfd
field.
The nfd
field is used as the length field of the strides
field.
This function computes the field’s value again based on the length of the list.
§Panics
Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.
Trait Implementations§
§impl Debug for BuffersFromPixmapReply
impl Debug for BuffersFromPixmapReply
§impl From<BuffersFromPixmapReply> for Reply
impl From<BuffersFromPixmapReply> for Reply
§fn from(reply: BuffersFromPixmapReply) -> Reply
fn from(reply: BuffersFromPixmapReply) -> Reply
Converts to this type from the input type.
§impl Serialize for BuffersFromPixmapReply
impl Serialize for BuffersFromPixmapReply
§impl TryParseFd for BuffersFromPixmapReply
impl TryParseFd for BuffersFromPixmapReply
§fn try_parse_fd<'a>(
initial_value: &'a [u8],
fds: &mut Vec<OwnedFd>,
) -> Result<(BuffersFromPixmapReply, &'a [u8]), ParseError>
fn try_parse_fd<'a>( initial_value: &'a [u8], fds: &mut Vec<OwnedFd>, ) -> Result<(BuffersFromPixmapReply, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more
Auto Trait Implementations§
impl Freeze for BuffersFromPixmapReply
impl RefUnwindSafe for BuffersFromPixmapReply
impl Send for BuffersFromPixmapReply
impl Sync for BuffersFromPixmapReply
impl Unpin for BuffersFromPixmapReply
impl UnwindSafe for BuffersFromPixmapReply
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more