#[repr(u32)]pub enum PowerDomain {
BigClusterPowerDomain = 0,
LittleClusterPowerDomain = 1,
}Expand description
Devices with big-little architecture may have different operating points for each cluster.
Other devices use BIG_CLUSTER_POWER_DOMAIN for getting/setting the operating point.
Variants§
Implementations§
Source§impl PowerDomain
impl PowerDomain
pub fn from_primitive(prim: u32) -> Option<PowerDomain>
pub const fn into_primitive(self) -> u32
Trait Implementations§
Source§impl Clone for PowerDomain
impl Clone for PowerDomain
Source§fn clone(&self) -> PowerDomain
fn clone(&self) -> PowerDomain
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PowerDomain
Source§impl Debug for PowerDomain
impl Debug for PowerDomain
Source§impl<D> Decode<PowerDomain, D> for PowerDomainwhere
D: ResourceDialect,
impl<D> Decode<PowerDomain, D> for PowerDomainwhere
D: ResourceDialect,
Source§fn new_empty() -> PowerDomain
fn new_empty() -> PowerDomain
Creates a valid instance of
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl<D> Encode<PowerDomain, D> for PowerDomainwhere
D: ResourceDialect,
impl<D> Encode<PowerDomain, D> for PowerDomainwhere
D: ResourceDialect,
impl Eq for PowerDomain
Source§impl Hash for PowerDomain
impl Hash for PowerDomain
Source§impl Ord for PowerDomain
impl Ord for PowerDomain
Source§fn cmp(&self, other: &PowerDomain) -> Ordering
fn cmp(&self, other: &PowerDomain) -> Ordering
1.21.0 (const: unstable) · 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 PowerDomain
impl PartialEq for PowerDomain
Source§fn eq(&self, other: &PowerDomain) -> bool
fn eq(&self, other: &PowerDomain) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PowerDomain
impl PartialOrd for PowerDomain
impl StructuralPartialEq for PowerDomain
Source§impl TypeMarker for PowerDomain
impl TypeMarker for PowerDomain
Source§type Owned = PowerDomain
type Owned = PowerDomain
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 PowerDomain
impl ValueTypeMarker for PowerDomain
Source§type Borrowed<'a> = PowerDomain
type Borrowed<'a> = PowerDomain
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
value: &<PowerDomain as TypeMarker>::Owned,
) -> <PowerDomain as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<PowerDomain as TypeMarker>::Owned, ) -> <PowerDomain as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned to Self::Borrowed.Auto Trait Implementations§
impl Freeze for PowerDomain
impl RefUnwindSafe for PowerDomain
impl Send for PowerDomain
impl Sync for PowerDomain
impl Unpin for PowerDomain
impl UnsafeUnpin for PowerDomain
impl UnwindSafe for PowerDomain
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