Struct Optional
pub struct Optional<T>(/* private fields */)
where
T: TypeMarker;
Expand description
The FIDL type T:optional
where T
is a vector, string, handle, or client/server end.
Trait Implementations§
§impl<T, D> Decode<Optional<T>, D> for Option<<T as TypeMarker>::Owned>
impl<T, D> Decode<Optional<T>, D> for Option<<T as TypeMarker>::Owned>
§fn new_empty() -> Option<<T as TypeMarker>::Owned>
fn new_empty() -> Option<<T as TypeMarker>::Owned>
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<T> ResourceTypeMarker for Optional<T>where
T: ResourceTypeMarker + TypeMarker,
impl<T> ResourceTypeMarker for Optional<T>where
T: ResourceTypeMarker + TypeMarker,
§type Borrowed<'a> = Option<<T as ResourceTypeMarker>::Borrowed<'a>>
type Borrowed<'a> = Option<<T as ResourceTypeMarker>::Borrowed<'a>>
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned
. There are three cases: Read more§fn take_or_borrow(
value: &mut <Optional<T> as TypeMarker>::Owned,
) -> <Optional<T> as ResourceTypeMarker>::Borrowed<'_>
fn take_or_borrow( value: &mut <Optional<T> as TypeMarker>::Owned, ) -> <Optional<T> as ResourceTypeMarker>::Borrowed<'_>
Cheaply converts from
&mut Self::Owned
to Self::Borrowed
. For
HandleBased
types this is “take” (it returns an owned handle and
replaces value
with Handle::invalid
), and for all other types it is
“borrow” (just converts from one reference to another).§impl<T> TypeMarker for Optional<T>where
T: TypeMarker,
impl<T> TypeMarker for Optional<T>where
T: TypeMarker,
§type Owned = Option<<T as TypeMarker>::Owned>
type Owned = Option<<T as TypeMarker>::Owned>
The owned Rust type which this FIDL type decodes into.
§fn inline_align(context: Context) -> usize
fn inline_align(context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(context: Context) -> usize
fn inline_size(context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl<T> ValueTypeMarker for Optional<T>where
T: ValueTypeMarker,
impl<T> ValueTypeMarker for Optional<T>where
T: ValueTypeMarker,
§type Borrowed<'a> = Option<<T as ValueTypeMarker>::Borrowed<'a>>
type Borrowed<'a> = Option<<T as ValueTypeMarker>::Borrowed<'a>>
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<Optional<T> as TypeMarker>::Owned,
) -> <Optional<T> as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<Optional<T> as TypeMarker>::Owned, ) -> <Optional<T> as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.Auto Trait Implementations§
impl<T> Freeze for Optional<T>
impl<T> RefUnwindSafe for Optional<T>where
T: RefUnwindSafe,
impl<T> Send for Optional<T>where
T: Send,
impl<T> Sync for Optional<T>where
T: Sync,
impl<T> Unpin for Optional<T>where
T: Unpin,
impl<T> UnwindSafe for Optional<T>where
T: UnwindSafe,
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