Struct ResolverResolveHostNameRequest
pub struct ResolverResolveHostNameRequest {
pub host: String,
pub timeout: i64,
}
Fields§
§host: String
§timeout: i64
Trait Implementations§
§impl Clone for ResolverResolveHostNameRequest
impl Clone for ResolverResolveHostNameRequest
§fn clone(&self) -> ResolverResolveHostNameRequest
fn clone(&self) -> ResolverResolveHostNameRequest
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 more§impl Debug for ResolverResolveHostNameRequest
impl Debug for ResolverResolveHostNameRequest
§impl<D> Decode<ResolverResolveHostNameRequest, D> for ResolverResolveHostNameRequestwhere
D: ResourceDialect,
impl<D> Decode<ResolverResolveHostNameRequest, D> for ResolverResolveHostNameRequestwhere
D: ResourceDialect,
§fn new_empty() -> ResolverResolveHostNameRequest
fn new_empty() -> ResolverResolveHostNameRequest
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<ResolverResolveHostNameRequest, D> for &ResolverResolveHostNameRequestwhere
D: ResourceDialect,
impl<D> Encode<ResolverResolveHostNameRequest, D> for &ResolverResolveHostNameRequestwhere
D: ResourceDialect,
§impl Hash for ResolverResolveHostNameRequest
impl Hash for ResolverResolveHostNameRequest
§impl Ord for ResolverResolveHostNameRequest
impl Ord for ResolverResolveHostNameRequest
§fn cmp(&self, other: &ResolverResolveHostNameRequest) -> Ordering
fn cmp(&self, other: &ResolverResolveHostNameRequest) -> 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
§impl PartialEq for ResolverResolveHostNameRequest
impl PartialEq for ResolverResolveHostNameRequest
§impl PartialOrd for ResolverResolveHostNameRequest
impl PartialOrd for ResolverResolveHostNameRequest
§impl TypeMarker for ResolverResolveHostNameRequest
impl TypeMarker for ResolverResolveHostNameRequest
§type Owned = ResolverResolveHostNameRequest
type Owned = ResolverResolveHostNameRequest
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.§impl ValueTypeMarker for ResolverResolveHostNameRequest
impl ValueTypeMarker for ResolverResolveHostNameRequest
§type Borrowed<'a> = &'a ResolverResolveHostNameRequest
type Borrowed<'a> = &'a ResolverResolveHostNameRequest
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<ResolverResolveHostNameRequest as TypeMarker>::Owned,
) -> <ResolverResolveHostNameRequest as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<ResolverResolveHostNameRequest as TypeMarker>::Owned, ) -> <ResolverResolveHostNameRequest as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Eq for ResolverResolveHostNameRequest
impl Persistable for ResolverResolveHostNameRequest
impl StructuralPartialEq for ResolverResolveHostNameRequest
Auto Trait Implementations§
impl Freeze for ResolverResolveHostNameRequest
impl RefUnwindSafe for ResolverResolveHostNameRequest
impl Send for ResolverResolveHostNameRequest
impl Sync for ResolverResolveHostNameRequest
impl Unpin for ResolverResolveHostNameRequest
impl UnwindSafe for ResolverResolveHostNameRequest
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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