#[non_exhaustive]
pub enum ClientType {
Wlan,
// some variants omitted
}
Expand description
A value that represents the type of client using the protocol.
ClientType
is used as a parameter for:
- [
Connector.Connect
] to connect a [Watcher
] to the power level of the specified client type - [
fuchsia.power.systemmode/ClientConfigurator.Get
] and [fuchsia.power.systemmode/ClientConfigurator.Set
] to update the power configuration of the specified client type
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Wlan
Implementations§
source§impl ClientType
impl ClientType
pub fn from_primitive(prim: u32) -> Option<ClientType>
pub fn from_primitive_allow_unknown(prim: u32) -> ClientType
pub fn unknown() -> ClientType
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
Trait Implementations§
source§impl Clone for ClientType
impl Clone for ClientType
source§fn clone(&self) -> ClientType
fn clone(&self) -> ClientType
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 ClientType
impl Debug for ClientType
source§impl Decode<ClientType> for ClientType
impl Decode<ClientType> for ClientType
source§fn new_empty() -> ClientType
fn new_empty() -> ClientType
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.source§impl Encode<ClientType> for ClientType
impl Encode<ClientType> for ClientType
source§impl Hash for ClientType
impl Hash for ClientType
source§impl Ord for ClientType
impl Ord for ClientType
source§fn cmp(&self, other: &ClientType) -> Ordering
fn cmp(&self, other: &ClientType) -> 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<ClientType> for ClientType
impl PartialEq<ClientType> for ClientType
source§fn eq(&self, other: &ClientType) -> bool
fn eq(&self, other: &ClientType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ClientType> for ClientType
impl PartialOrd<ClientType> for ClientType
source§fn partial_cmp(&self, other: &ClientType) -> Option<Ordering>
fn partial_cmp(&self, other: &ClientType) -> 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 ClientType
impl TypeMarker for ClientType
§type Owned = ClientType
type Owned = ClientType
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 ClientType
impl ValueTypeMarker for ClientType
§type Borrowed = <ClientType as TypeMarker>::Owned
type Borrowed = <ClientType 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 moresource§fn borrow<'a>(
value: &'a <ClientType as TypeMarker>::Owned
) -> <ClientType as ValueTypeMarker>::Borrowed<'a>
fn borrow<'a>( value: &'a <ClientType as TypeMarker>::Owned ) -> <ClientType as ValueTypeMarker>::Borrowed<'a>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.