pub struct UnknownCmsg {
pub cmsg_header: cmsghdr,
pub data_bytes: Vec<u8>,
}
Expand description
Control messages that are currently not supported by Nix.
Fields§
§cmsg_header: cmsghdr
Control message header.
data_bytes: Vec<u8>
Bytes of the control message data.
Trait Implementations§
Source§impl Clone for UnknownCmsg
impl Clone for UnknownCmsg
Source§fn clone(&self) -> UnknownCmsg
fn clone(&self) -> UnknownCmsg
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UnknownCmsg
impl Debug for UnknownCmsg
Source§impl PartialEq for UnknownCmsg
impl PartialEq for UnknownCmsg
impl Eq for UnknownCmsg
impl StructuralPartialEq for UnknownCmsg
Auto Trait Implementations§
impl Freeze for UnknownCmsg
impl RefUnwindSafe for UnknownCmsg
impl Send for UnknownCmsg
impl Sync for UnknownCmsg
impl Unpin for UnknownCmsg
impl UnwindSafe for UnknownCmsg
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