pub struct LeApcfReadExtendedFeatures { /* private fields */ }Implementations§
Source§impl LeApcfReadExtendedFeatures
impl LeApcfReadExtendedFeatures
pub fn parse(bytes: &[u8]) -> Result<Self, Error>
pub fn get_apcf_opcode(&self) -> ApcfOpcode
pub fn get_op_code(&self) -> OpCode
pub fn get_size(&self) -> usize
Trait Implementations§
Source§impl Clone for LeApcfReadExtendedFeatures
impl Clone for LeApcfReadExtendedFeatures
Source§fn clone(&self) -> LeApcfReadExtendedFeatures
fn clone(&self) -> LeApcfReadExtendedFeatures
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 Debug for LeApcfReadExtendedFeatures
impl Debug for LeApcfReadExtendedFeatures
Source§impl From<LeApcfReadExtendedFeatures> for Bytes
impl From<LeApcfReadExtendedFeatures> for Bytes
Source§fn from(packet: LeApcfReadExtendedFeatures) -> Self
fn from(packet: LeApcfReadExtendedFeatures) -> Self
Converts to this type from the input type.
Source§impl From<LeApcfReadExtendedFeatures> for Command
impl From<LeApcfReadExtendedFeatures> for Command
Source§fn from(packet: LeApcfReadExtendedFeatures) -> Command
fn from(packet: LeApcfReadExtendedFeatures) -> Command
Converts to this type from the input type.
Source§impl From<LeApcfReadExtendedFeatures> for LeApcf
impl From<LeApcfReadExtendedFeatures> for LeApcf
Source§fn from(packet: LeApcfReadExtendedFeatures) -> LeApcf
fn from(packet: LeApcfReadExtendedFeatures) -> LeApcf
Converts to this type from the input type.
Source§impl From<LeApcfReadExtendedFeatures> for Vec<u8>
impl From<LeApcfReadExtendedFeatures> for Vec<u8>
Source§fn from(packet: LeApcfReadExtendedFeatures) -> Self
fn from(packet: LeApcfReadExtendedFeatures) -> Self
Converts to this type from the input type.
Source§impl From<LeApcfReadExtendedFeaturesBuilder> for LeApcfReadExtendedFeatures
impl From<LeApcfReadExtendedFeaturesBuilder> for LeApcfReadExtendedFeatures
Source§fn from(
builder: LeApcfReadExtendedFeaturesBuilder,
) -> LeApcfReadExtendedFeatures
fn from( builder: LeApcfReadExtendedFeaturesBuilder, ) -> LeApcfReadExtendedFeatures
Converts to this type from the input type.
Source§impl Packet for LeApcfReadExtendedFeatures
impl Packet for LeApcfReadExtendedFeatures
Source§impl TryFrom<Command> for LeApcfReadExtendedFeatures
impl TryFrom<Command> for LeApcfReadExtendedFeatures
impl Eq for LeApcfReadExtendedFeatures
impl StructuralPartialEq for LeApcfReadExtendedFeatures
Auto Trait Implementations§
impl !Freeze for LeApcfReadExtendedFeatures
impl RefUnwindSafe for LeApcfReadExtendedFeatures
impl Send for LeApcfReadExtendedFeatures
impl Sync for LeApcfReadExtendedFeatures
impl Unpin for LeApcfReadExtendedFeatures
impl UnwindSafe for LeApcfReadExtendedFeatures
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