Struct ResultType
pub struct ResultType<T, E>(/* private fields */)
where
T: TypeMarker,
E: TypeMarker;
Expand description
The FIDL union generated for strict two-way methods with errors.
Trait Implementations§
§impl<D, T, E> Decode<ResultType<T, E>, D> for Result<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>where
D: ResourceDialect,
T: TypeMarker,
E: TypeMarker,
<T as TypeMarker>::Owned: Decode<T, D>,
<E as TypeMarker>::Owned: Decode<E, D>,
impl<D, T, E> Decode<ResultType<T, E>, D> for Result<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>where
D: ResourceDialect,
T: TypeMarker,
E: TypeMarker,
<T as TypeMarker>::Owned: Decode<T, D>,
<E as TypeMarker>::Owned: Decode<E, D>,
§fn new_empty() -> Result<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>
fn new_empty() -> Result<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D, T, X, E, Y> Encode<ResultType<T, E>, D> for Result<X, Y>
impl<D, T, X, E, Y> Encode<ResultType<T, E>, D> for Result<X, Y>
§impl<T, E> TypeMarker for ResultType<T, E>where
T: TypeMarker,
E: TypeMarker,
impl<T, E> TypeMarker for ResultType<T, E>where
T: TypeMarker,
E: TypeMarker,
§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.
§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.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