pub struct ResolutionContext { /* private fields */ }
Expand description
Convenience wrapper type for the autogenerated FIDL ResolutionContext
.
Implementations§
Trait Implementations§
Source§impl Clone for ResolutionContext
impl Clone for ResolutionContext
Source§fn clone(&self) -> ResolutionContext
fn clone(&self) -> ResolutionContext
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ResolutionContext
impl Debug for ResolutionContext
Source§impl From<BlobId> for ResolutionContext
impl From<BlobId> for ResolutionContext
Source§impl From<GenericDigest<FuchsiaMerkleMarker>> for ResolutionContext
impl From<GenericDigest<FuchsiaMerkleMarker>> for ResolutionContext
Source§impl From<ResolutionContext> for ResolutionContext
impl From<ResolutionContext> for ResolutionContext
Source§fn from(context: ResolutionContext) -> Self
fn from(context: ResolutionContext) -> Self
Converts to this type from the input type.
Source§impl From<ResolutionContext> for Vec<u8>
impl From<ResolutionContext> for Vec<u8>
Source§fn from(context: ResolutionContext) -> Self
fn from(context: ResolutionContext) -> Self
Converts to this type from the input type.
Source§impl Hash for ResolutionContext
impl Hash for ResolutionContext
Source§impl Ord for ResolutionContext
impl Ord for ResolutionContext
Source§fn cmp(&self, other: &ResolutionContext) -> Ordering
fn cmp(&self, other: &ResolutionContext) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResolutionContext
impl PartialEq for ResolutionContext
Source§impl PartialOrd for ResolutionContext
impl PartialOrd for ResolutionContext
Source§impl TryFrom<&[u8]> for ResolutionContext
impl TryFrom<&[u8]> for ResolutionContext
Source§impl TryFrom<&ResolutionContext> for ResolutionContext
impl TryFrom<&ResolutionContext> for ResolutionContext
Source§type Error = ResolutionContextError
type Error = ResolutionContextError
The type returned in the event of a conversion error.
impl Eq for ResolutionContext
impl StructuralPartialEq for ResolutionContext
Auto Trait Implementations§
impl Freeze for ResolutionContext
impl RefUnwindSafe for ResolutionContext
impl Send for ResolutionContext
impl Sync for ResolutionContext
impl Unpin for ResolutionContext
impl UnwindSafe for ResolutionContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more