Struct WireBox
#[repr(C)]pub struct WireBox<T> { /* private fields */ }
Expand description
A boxed (optional) FIDL value.
Implementations§
§impl<T> WireBox<T>
impl<T> WireBox<T>
pub fn encode_present(out: &mut MaybeUninit<WireBox<T>>)
pub fn encode_present(out: &mut MaybeUninit<WireBox<T>>)
Encodes that a value is present in an output.
pub fn encode_absent(out: &mut MaybeUninit<WireBox<T>>)
pub fn encode_absent(out: &mut MaybeUninit<WireBox<T>>)
Encodes that a value is absent in a slot.
Trait Implementations§
§impl<T, WT> TakeFrom<WireBox<WT>> for Option<T>where
T: TakeFrom<WT>,
impl<T, WT> TakeFrom<WireBox<WT>> for Option<T>where
T: TakeFrom<WT>,
§fn take_from(from: &WireBox<WT>) -> Option<T>
fn take_from(from: &WireBox<WT>) -> Option<T>
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read more§impl<T> ZeroPadding for WireBox<T>
impl<T> ZeroPadding for WireBox<T>
§fn zero_padding(_: &mut MaybeUninit<WireBox<T>>)
fn zero_padding(_: &mut MaybeUninit<WireBox<T>>)
Writes zeroes to the padding for this type, if any.
impl<T> Send for WireBox<T>where
T: Send,
impl<T> Sync for WireBox<T>where
T: Sync,
Auto Trait Implementations§
impl<T> Freeze for WireBox<T>
impl<T> RefUnwindSafe for WireBox<T>where
T: RefUnwindSafe,
impl<T> Unpin for WireBox<T>
impl<T> UnwindSafe for WireBox<T>where
T: RefUnwindSafe,
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