Struct x11rb_protocol::protocol::shm::CreateSegmentReply
source · pub struct CreateSegmentReply {
pub nfd: u8,
pub sequence: u16,
pub length: u32,
pub shm_fd: RawFdContainer,
}
Expand description
The returned file descriptor..
The file descriptor returned by the server. The client may call mmap() on it to map the memory allocated by the server.
§Fields
nfd
- The number of file descriptors sent by the server. Will always be 1.
Fields§
§nfd: u8
§sequence: u16
§length: u32
§shm_fd: RawFdContainer
Trait Implementations§
source§impl Debug for CreateSegmentReply
impl Debug for CreateSegmentReply
source§impl From<CreateSegmentReply> for Reply
impl From<CreateSegmentReply> for Reply
source§fn from(reply: CreateSegmentReply) -> Reply
fn from(reply: CreateSegmentReply) -> Reply
Converts to this type from the input type.
source§impl Serialize for CreateSegmentReply
impl Serialize for CreateSegmentReply
source§impl TryParseFd for CreateSegmentReply
impl TryParseFd for CreateSegmentReply
source§fn try_parse_fd<'a>(
initial_value: &'a [u8],
fds: &mut Vec<RawFdContainer>
) -> Result<(Self, &'a [u8]), ParseError>
fn try_parse_fd<'a>( initial_value: &'a [u8], fds: &mut Vec<RawFdContainer> ) -> Result<(Self, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more
Auto Trait Implementations§
impl Freeze for CreateSegmentReply
impl RefUnwindSafe for CreateSegmentReply
impl Send for CreateSegmentReply
impl Sync for CreateSegmentReply
impl Unpin for CreateSegmentReply
impl UnwindSafe for CreateSegmentReply
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