pub struct FdFrame {
pub header: Header,
pub id: u32,
pub is_extended: bool,
pub is_error: bool,
pub len: u8,
pub data: Vec<u8>,
}Fields§
§header: Header§id: u32§is_extended: bool§is_error: bool§len: u8§data: Vec<u8>Trait Implementations§
Source§impl<'de> Deserialize<'de> for FdFrame
impl<'de> Deserialize<'de> for FdFrame
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Message for FdFrame
impl StructuralPartialEq for FdFrame
Auto Trait Implementations§
impl Freeze for FdFrame
impl RefUnwindSafe for FdFrame
impl Send for FdFrame
impl Sync for FdFrame
impl Unpin for FdFrame
impl UnwindSafe for FdFrame
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