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