pub struct ResolverResolveResponse {
pub component: Component,
}
Fields§
§component: Component
Trait Implementations§
Source§impl Debug for ResolverResolveResponse
impl Debug for ResolverResolveResponse
Source§impl Encodable for ResolverResolveResponse
impl Encodable for ResolverResolveResponse
Source§type Encoded = WireResolverResolveResponse
type Encoded = WireResolverResolveResponse
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl EncodableOption for Box<ResolverResolveResponse>
impl EncodableOption for Box<ResolverResolveResponse>
Source§type EncodedOption = WireBox<WireResolverResolveResponse>
type EncodedOption = WireBox<WireResolverResolveResponse>
The wire type for the optional value.
Source§impl<___E> Encode<___E> for ResolverResolveResponsewhere
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
impl<___E> Encode<___E> for ResolverResolveResponsewhere
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
Source§impl<___E> EncodeOption<___E> for Box<ResolverResolveResponse>where
___E: Encoder + ?Sized,
ResolverResolveResponse: Encode<___E>,
impl<___E> EncodeOption<___E> for Box<ResolverResolveResponse>where
___E: Encoder + ?Sized,
ResolverResolveResponse: Encode<___E>,
Source§fn encode_option(
this: Option<&mut Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Self::EncodedOption>,
) -> Result<(), EncodeError>
fn encode_option( this: Option<&mut Self>, encoder: &mut ___E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl TakeFrom<WireResolverResolveResponse> for ResolverResolveResponse
impl TakeFrom<WireResolverResolveResponse> for ResolverResolveResponse
Source§fn take_from(from: &WireResolverResolveResponse) -> Self
fn take_from(from: &WireResolverResolveResponse) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for ResolverResolveResponse
impl RefUnwindSafe for ResolverResolveResponse
impl Send for ResolverResolveResponse
impl Sync for ResolverResolveResponse
impl Unpin for ResolverResolveResponse
impl UnwindSafe for ResolverResolveResponse
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