pub type WrappedNewCapabilityId = WrappedCapabilityId;
Aliased Type§
#[repr(C)]pub struct WrappedNewCapabilityId {
pub id: u64,
}
Fields§
§id: u64
Trait Implementations
Source§impl Clone for WrappedCapabilityId
impl Clone for WrappedCapabilityId
Source§fn clone(&self) -> WrappedCapabilityId
fn clone(&self) -> WrappedCapabilityId
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 WrappedCapabilityId
impl Debug for WrappedCapabilityId
Source§impl<D: ResourceDialect> Decode<WrappedCapabilityId, D> for WrappedCapabilityId
impl<D: ResourceDialect> Decode<WrappedCapabilityId, D> for WrappedCapabilityId
Source§impl Hash for WrappedCapabilityId
impl Hash for WrappedCapabilityId
Source§impl Ord for WrappedCapabilityId
impl Ord for WrappedCapabilityId
Source§fn cmp(&self, other: &WrappedCapabilityId) -> Ordering
fn cmp(&self, other: &WrappedCapabilityId) -> 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 WrappedCapabilityId
impl PartialEq for WrappedCapabilityId
Source§impl PartialOrd for WrappedCapabilityId
impl PartialOrd for WrappedCapabilityId
Source§impl TypeMarker for WrappedCapabilityId
impl TypeMarker for WrappedCapabilityId
Source§type Owned = WrappedCapabilityId
type Owned = WrappedCapabilityId
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
.Source§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 moreSource§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 WrappedCapabilityId
impl ValueTypeMarker for WrappedCapabilityId
Source§type Borrowed<'a> = &'a WrappedCapabilityId
type Borrowed<'a> = &'a WrappedCapabilityId
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