pub struct SignalReportIndication<T0, T1, T2> {
pub rssi_dbm: T0,
pub snr_db: T1,
pub tx_rate_500kbps: T2,
}Expand description
The generic type corresponding to SignalReportIndication.
Fields§
§rssi_dbm: T0§snr_db: T1§tx_rate_500kbps: T2Trait Implementations§
Source§impl<___E, T0, T1, T2> Encode<SignalReportIndication, ___E> for SignalReportIndication<T0, T1, T2>
impl<___E, T0, T1, T2> Encode<SignalReportIndication, ___E> for SignalReportIndication<T0, T1, T2>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<SignalReportIndication>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<SignalReportIndication>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Auto Trait Implementations§
impl<T0, T1, T2> Freeze for SignalReportIndication<T0, T1, T2>
impl<T0, T1, T2> RefUnwindSafe for SignalReportIndication<T0, T1, T2>
impl<T0, T1, T2> Send for SignalReportIndication<T0, T1, T2>
impl<T0, T1, T2> Sync for SignalReportIndication<T0, T1, T2>
impl<T0, T1, T2> Unpin for SignalReportIndication<T0, T1, T2>
impl<T0, T1, T2> UnsafeUnpin for SignalReportIndication<T0, T1, T2>
impl<T0, T1, T2> UnwindSafe for SignalReportIndication<T0, T1, T2>
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
§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]