pub struct LevelTuple {
pub child_level: Option<u8>,
pub parent_level: Option<u8>,
/* private fields */
}
Expand description
Represents a dependency between two power levels of two different
PowerElement
s.
Fields§
§child_level: Option<u8>
§parent_level: Option<u8>
Trait Implementations§
Source§impl Clone for LevelTuple
impl Clone for LevelTuple
Source§fn clone(&self) -> LevelTuple
fn clone(&self) -> LevelTuple
Returns a duplicate 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 LevelTuple
impl Debug for LevelTuple
Source§impl<D: ResourceDialect> Decode<LevelTuple, D> for LevelTuple
impl<D: ResourceDialect> Decode<LevelTuple, D> for LevelTuple
Source§impl Default for LevelTuple
impl Default for LevelTuple
Source§fn default() -> LevelTuple
fn default() -> LevelTuple
Returns the “default value” for a type. Read more
Source§impl<D: ResourceDialect> Encode<LevelTuple, D> for &LevelTuple
impl<D: ResourceDialect> Encode<LevelTuple, D> for &LevelTuple
Source§impl PartialEq for LevelTuple
impl PartialEq for LevelTuple
Source§impl TypeMarker for LevelTuple
impl TypeMarker for LevelTuple
Source§type Owned = LevelTuple
type Owned = LevelTuple
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 LevelTuple
impl ValueTypeMarker for LevelTuple
Source§type Borrowed<'a> = &'a LevelTuple
type Borrowed<'a> = &'a LevelTuple
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 Persistable for LevelTuple
impl StructuralPartialEq for LevelTuple
Auto Trait Implementations§
impl Freeze for LevelTuple
impl RefUnwindSafe for LevelTuple
impl Send for LevelTuple
impl Sync for LevelTuple
impl Unpin for LevelTuple
impl UnwindSafe for LevelTuple
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