pub struct LeBatchScanReadResultParameters { /* private fields */ }Implementations§
Source§impl LeBatchScanReadResultParameters
impl LeBatchScanReadResultParameters
pub fn parse(bytes: &[u8]) -> Result<Self, Error>
pub fn get_batch_scan_data_read(&self) -> BatchScanDataRead
pub fn get_batch_scan_opcode(&self) -> BatchScanOpcode
pub fn get_op_code(&self) -> OpCode
pub fn get_size(&self) -> usize
Trait Implementations§
Source§impl Clone for LeBatchScanReadResultParameters
impl Clone for LeBatchScanReadResultParameters
Source§fn clone(&self) -> LeBatchScanReadResultParameters
fn clone(&self) -> LeBatchScanReadResultParameters
Returns a duplicate 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 From<LeBatchScanReadResultParameters> for Bytes
impl From<LeBatchScanReadResultParameters> for Bytes
Source§fn from(packet: LeBatchScanReadResultParameters) -> Self
fn from(packet: LeBatchScanReadResultParameters) -> Self
Converts to this type from the input type.
Source§impl From<LeBatchScanReadResultParameters> for Command
impl From<LeBatchScanReadResultParameters> for Command
Source§fn from(packet: LeBatchScanReadResultParameters) -> Command
fn from(packet: LeBatchScanReadResultParameters) -> Command
Converts to this type from the input type.
Source§impl From<LeBatchScanReadResultParameters> for LeBatchScan
impl From<LeBatchScanReadResultParameters> for LeBatchScan
Source§fn from(packet: LeBatchScanReadResultParameters) -> LeBatchScan
fn from(packet: LeBatchScanReadResultParameters) -> LeBatchScan
Converts to this type from the input type.
Source§impl From<LeBatchScanReadResultParameters> for Vec<u8>
impl From<LeBatchScanReadResultParameters> for Vec<u8>
Source§fn from(packet: LeBatchScanReadResultParameters) -> Self
fn from(packet: LeBatchScanReadResultParameters) -> Self
Converts to this type from the input type.
Source§impl From<LeBatchScanReadResultParametersBuilder> for LeBatchScanReadResultParameters
impl From<LeBatchScanReadResultParametersBuilder> for LeBatchScanReadResultParameters
Source§fn from(
builder: LeBatchScanReadResultParametersBuilder,
) -> LeBatchScanReadResultParameters
fn from( builder: LeBatchScanReadResultParametersBuilder, ) -> LeBatchScanReadResultParameters
Converts to this type from the input type.
Source§impl PartialEq for LeBatchScanReadResultParameters
impl PartialEq for LeBatchScanReadResultParameters
Source§fn eq(&self, other: &LeBatchScanReadResultParameters) -> bool
fn eq(&self, other: &LeBatchScanReadResultParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeBatchScanReadResultParameters
impl StructuralPartialEq for LeBatchScanReadResultParameters
Auto Trait Implementations§
impl !Freeze for LeBatchScanReadResultParameters
impl RefUnwindSafe for LeBatchScanReadResultParameters
impl Send for LeBatchScanReadResultParameters
impl Sync for LeBatchScanReadResultParameters
impl Unpin for LeBatchScanReadResultParameters
impl UnwindSafe for LeBatchScanReadResultParameters
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more