pub struct ValidateActLazyResponse {
pub result: TestResult,
}
Fields§
§result: TestResult
Trait Implementations§
source§impl Clone for ValidateActLazyResponse
impl Clone for ValidateActLazyResponse
source§fn clone(&self) -> ValidateActLazyResponse
fn clone(&self) -> ValidateActLazyResponse
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 ValidateActLazyResponse
impl Debug for ValidateActLazyResponse
source§impl Decode<ValidateActLazyResponse> for ValidateActLazyResponse
impl Decode<ValidateActLazyResponse> for ValidateActLazyResponse
source§impl Encode<ValidateActLazyResponse> for &ValidateActLazyResponse
impl Encode<ValidateActLazyResponse> for &ValidateActLazyResponse
source§impl<T0: Encode<TestResult>> Encode<ValidateActLazyResponse> for (T0,)
impl<T0: Encode<TestResult>> Encode<ValidateActLazyResponse> for (T0,)
source§impl Hash for ValidateActLazyResponse
impl Hash for ValidateActLazyResponse
source§impl Ord for ValidateActLazyResponse
impl Ord for ValidateActLazyResponse
source§fn cmp(&self, other: &ValidateActLazyResponse) -> Ordering
fn cmp(&self, other: &ValidateActLazyResponse) -> 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<ValidateActLazyResponse> for ValidateActLazyResponse
impl PartialEq<ValidateActLazyResponse> for ValidateActLazyResponse
source§fn eq(&self, other: &ValidateActLazyResponse) -> bool
fn eq(&self, other: &ValidateActLazyResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ValidateActLazyResponse> for ValidateActLazyResponse
impl PartialOrd<ValidateActLazyResponse> for ValidateActLazyResponse
source§fn partial_cmp(&self, other: &ValidateActLazyResponse) -> Option<Ordering>
fn partial_cmp(&self, other: &ValidateActLazyResponse) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TypeMarker for ValidateActLazyResponse
impl TypeMarker for ValidateActLazyResponse
§type Owned = ValidateActLazyResponse
type Owned = ValidateActLazyResponse
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
.§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.source§impl ValueTypeMarker for ValidateActLazyResponse
impl ValueTypeMarker for ValidateActLazyResponse
§type Borrowed<'a> = &'a <ValidateActLazyResponse as TypeMarker>::Owned
type Borrowed<'a> = &'a <ValidateActLazyResponse as TypeMarker>::Owned
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Copy for ValidateActLazyResponse
impl Eq for ValidateActLazyResponse
impl Persistable for ValidateActLazyResponse
impl StructuralEq for ValidateActLazyResponse
impl StructuralPartialEq for ValidateActLazyResponse
Auto Trait Implementations§
impl RefUnwindSafe for ValidateActLazyResponse
impl Send for ValidateActLazyResponse
impl Sync for ValidateActLazyResponse
impl Unpin for ValidateActLazyResponse
impl UnwindSafe for ValidateActLazyResponse
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