Struct fidl::encoding::ResultType
source · pub struct ResultType<T: TypeMarker, E: TypeMarker>(/* private fields */);
Expand description
The FIDL union generated for strict two-way methods with errors.
Trait Implementations§
source§impl<D: ResourceDialect, T: TypeMarker, E: TypeMarker> Decode<ResultType<T, E>, D> for Result<T::Owned, E::Owned>
impl<D: ResourceDialect, T: TypeMarker, E: TypeMarker> Decode<ResultType<T, E>, D> for Result<T::Owned, E::Owned>
source§impl<D: ResourceDialect, T: TypeMarker, X: Encode<T, D>, E: TypeMarker, Y: Encode<E, D>> Encode<ResultType<T, E>, D> for Result<X, Y>
impl<D: ResourceDialect, T: TypeMarker, X: Encode<T, D>, E: TypeMarker, Y: Encode<E, D>> Encode<ResultType<T, E>, D> for Result<X, Y>
source§impl<T: TypeMarker, E: TypeMarker> TypeMarker for ResultType<T, E>
impl<T: TypeMarker, E: TypeMarker> TypeMarker for ResultType<T, E>
§type Owned = Result<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>
type Owned = Result<<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 ResultType<T, E>
impl<T, E> RefUnwindSafe for ResultType<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for ResultType<T, E>
impl<T, E> Sync for ResultType<T, E>
impl<T, E> Unpin for ResultType<T, E>
impl<T, E> UnwindSafe for ResultType<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