pub struct PreparedFrame {
pub bytes: Vec<u8>,
pub fds: FrameFds,
}Expand description
A serialized message plus the file descriptors collected while encoding
it. The descriptors travel out-of-band via SCM_RIGHTS; off-Unix
FrameFds is ().
Fields§
§bytes: Vec<u8>§fds: FrameFdsAuto Trait Implementations§
impl Freeze for PreparedFrame
impl RefUnwindSafe for PreparedFrame
impl Send for PreparedFrame
impl Sync for PreparedFrame
impl Unpin for PreparedFrame
impl UnsafeUnpin for PreparedFrame
impl UnwindSafe for PreparedFrame
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