pub enum SensorReport {
Vector([i16; 3]),
Scalar(u16),
}Variants§
Trait Implementations§
Source§impl Clone for SensorReport
impl Clone for SensorReport
Source§fn clone(&self) -> SensorReport
fn clone(&self) -> SensorReport
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 SensorReport
Source§impl Debug for SensorReport
impl Debug for SensorReport
Source§impl<___E> Encode<SensorReport<'static>, ___E> for SensorReportwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
impl<___E> Encode<SensorReport<'static>, ___E> for SensorReportwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<SensorReport<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<SensorReport<'static>>, _: (), ) -> 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<SensorReport<'static>, ___E> for &'a SensorReportwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
impl<'a, ___E> Encode<SensorReport<'static>, ___E> for &'a SensorReportwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<SensorReport<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<SensorReport<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<___E> EncodeOption<SensorReport<'static>, ___E> for SensorReport
impl<___E> EncodeOption<SensorReport<'static>, ___E> for SensorReport
Source§fn encode_option(
this: Option<SensorReport>,
encoder: &mut ___E,
out: &mut MaybeUninit<SensorReport<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<SensorReport>, encoder: &mut ___E, out: &mut MaybeUninit<SensorReport<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl<'a, ___E> EncodeOption<SensorReport<'static>, ___E> for &'a SensorReport
impl<'a, ___E> EncodeOption<SensorReport<'static>, ___E> for &'a SensorReport
Source§fn encode_option(
this: Option<&'a SensorReport>,
encoder: &mut ___E,
out: &mut MaybeUninit<SensorReport<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<&'a SensorReport>, encoder: &mut ___E, out: &mut MaybeUninit<SensorReport<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
impl Eq for SensorReport
Source§impl<'de> FromWire<SensorReport<'de>> for SensorReport
impl<'de> FromWire<SensorReport<'de>> for SensorReport
Source§fn from_wire(wire: SensorReport<'de>) -> SensorReport
fn from_wire(wire: SensorReport<'de>) -> SensorReport
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl<'de> FromWireOption<SensorReport<'de>> for SensorReport
impl<'de> FromWireOption<SensorReport<'de>> for SensorReport
Source§fn from_wire_option(wire: SensorReport<'de>) -> Option<SensorReport>
fn from_wire_option(wire: SensorReport<'de>) -> Option<SensorReport>
Converts the given owned value to an option of this type.
Source§impl<'de> FromWireRef<SensorReport<'de>> for SensorReport
impl<'de> FromWireRef<SensorReport<'de>> for SensorReport
Source§fn from_wire_ref(wire: &SensorReport<'de>) -> SensorReport
fn from_wire_ref(wire: &SensorReport<'de>) -> SensorReport
Converts the given reference to this type.
Source§impl Hash for SensorReport
impl Hash for SensorReport
Source§impl Ord for SensorReport
impl Ord for SensorReport
Source§fn cmp(&self, other: &SensorReport) -> Ordering
fn cmp(&self, other: &SensorReport) -> 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for SensorReport
impl PartialEq for SensorReport
Source§impl PartialOrd for SensorReport
impl PartialOrd for SensorReport
impl StructuralPartialEq for SensorReport
Auto Trait Implementations§
impl Freeze for SensorReport
impl RefUnwindSafe for SensorReport
impl Send for SensorReport
impl Sync for SensorReport
impl Unpin for SensorReport
impl UnsafeUnpin for SensorReport
impl UnwindSafe for SensorReport
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, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
§fn from_wire_option(wire: Box<'_, W>) -> Option<T>
fn from_wire_option(wire: Box<'_, W>) -> Option<T>
Converts the given owned value to an option of this type.
§impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
§fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
Converts the given reference to an option of this type.
§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]