Struct fidl::encoding::FlexibleResultType
source · pub struct FlexibleResultType<T: TypeMarker, E: TypeMarker>(/* private fields */);
Expand description
The FIDL union generated for flexible two-way methods with errors.
Trait Implementations§
source§impl<T: TypeMarker, E: TypeMarker> TypeMarker for FlexibleResultType<T, E>
impl<T: TypeMarker, E: TypeMarker> TypeMarker for FlexibleResultType<T, E>
§type Owned = FlexibleResult<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>
type Owned = FlexibleResult<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>
The owned Rust type which this FIDL type decodes into.
source§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.
source§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
.source§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 moresource§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.Auto Trait Implementations§
impl<T, E> Freeze for FlexibleResultType<T, E>
impl<T, E> RefUnwindSafe for FlexibleResultType<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for FlexibleResultType<T, E>
impl<T, E> Sync for FlexibleResultType<T, E>
impl<T, E> Unpin for FlexibleResultType<T, E>
impl<T, E> UnwindSafe for FlexibleResultType<T, E>where
T: UnwindSafe,
E: 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