pub struct SensorLocation { /* private fields */ }Expand description
The wire type corresponding to SensorLocation.
Implementations§
Source§impl SensorLocation
impl SensorLocation
pub const UNKNOWN: SensorLocation
pub const BASE: SensorLocation
pub const LID: SensorLocation
Trait Implementations§
Source§impl Clone for SensorLocation
impl Clone for SensorLocation
Source§fn clone(&self) -> SensorLocation
fn clone(&self) -> SensorLocation
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 moreSource§impl Constrained for SensorLocation
impl Constrained for SensorLocation
Source§type Constraint = ()
type Constraint = ()
Type of constraint information for this type.
Source§fn validate(
_: Slot<'_, SensorLocation>,
_: <SensorLocation as Constrained>::Constraint,
) -> Result<(), ValidationError>
fn validate( _: Slot<'_, SensorLocation>, _: <SensorLocation as Constrained>::Constraint, ) -> Result<(), ValidationError>
Validate a slot of this type against a constraint. Can be called when
pointers/envelopes are just presence markers.
impl Copy for SensorLocation
Source§impl Debug for SensorLocation
impl Debug for SensorLocation
Source§impl<___D> Decode<___D> for SensorLocationwhere
___D: ?Sized,
impl<___D> Decode<___D> for SensorLocationwhere
___D: ?Sized,
Source§impl<___E> Encode<SensorLocation, ___E> for SensorLocationwhere
___E: ?Sized,
impl<___E> Encode<SensorLocation, ___E> for SensorLocationwhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<SensorLocation>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<SensorLocation>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<'a, ___E> Encode<SensorLocation, ___E> for &'a SensorLocationwhere
___E: ?Sized,
impl<'a, ___E> Encode<SensorLocation, ___E> for &'a SensorLocationwhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<SensorLocation>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<SensorLocation>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
impl Eq for SensorLocation
Source§impl From<SensorLocation> for SensorLocation
impl From<SensorLocation> for SensorLocation
Source§fn from(wire: SensorLocation) -> SensorLocation
fn from(wire: SensorLocation) -> SensorLocation
Converts to this type from the input type.
Source§impl From<SensorLocation> for SensorLocation
impl From<SensorLocation> for SensorLocation
Source§fn from(natural: SensorLocation) -> SensorLocation
fn from(natural: SensorLocation) -> SensorLocation
Converts to this type from the input type.
Source§impl FromWire<SensorLocation> for SensorLocation
impl FromWire<SensorLocation> for SensorLocation
Source§fn from_wire(wire: SensorLocation) -> SensorLocation
fn from_wire(wire: SensorLocation) -> SensorLocation
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<SensorLocation> for SensorLocation
impl FromWireRef<SensorLocation> for SensorLocation
Source§fn from_wire_ref(wire: &SensorLocation) -> SensorLocation
fn from_wire_ref(wire: &SensorLocation) -> SensorLocation
Converts the given reference to this type.
Source§impl IntoNatural for SensorLocation
impl IntoNatural for SensorLocation
Source§type Natural = SensorLocation
type Natural = SensorLocation
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl PartialEq for SensorLocation
impl PartialEq for SensorLocation
impl StructuralPartialEq for SensorLocation
Source§impl Wire for SensorLocation
impl Wire for SensorLocation
Source§type Narrowed<'de> = SensorLocation
type Narrowed<'de> = SensorLocation
The narrowed wire type, restricted to the
'de lifetime.Source§fn zero_padding(_: &mut MaybeUninit<SensorLocation>)
fn zero_padding(_: &mut MaybeUninit<SensorLocation>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl Freeze for SensorLocation
impl RefUnwindSafe for SensorLocation
impl Send for SensorLocation
impl Sync for SensorLocation
impl Unpin for SensorLocation
impl UnsafeUnpin for SensorLocation
impl UnwindSafe for SensorLocation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]