pub struct SetEventFilterConnectionSetupAllDevices { /* private fields */ }Implementations§
Source§impl SetEventFilterConnectionSetupAllDevices
impl SetEventFilterConnectionSetupAllDevices
pub fn parse(bytes: &[u8]) -> Result<Self, Error>
pub fn get_auto_accept_flag(&self) -> AutoAcceptFlag
pub fn get_filter_condition_type(&self) -> FilterConditionType
pub fn get_filter_type(&self) -> FilterType
pub fn get_op_code(&self) -> OpCode
pub fn get_size(&self) -> usize
Trait Implementations§
Source§impl Clone for SetEventFilterConnectionSetupAllDevices
impl Clone for SetEventFilterConnectionSetupAllDevices
Source§fn clone(&self) -> SetEventFilterConnectionSetupAllDevices
fn clone(&self) -> SetEventFilterConnectionSetupAllDevices
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<SetEventFilterConnectionSetupAllDevices> for Bytes
impl From<SetEventFilterConnectionSetupAllDevices> for Bytes
Source§fn from(packet: SetEventFilterConnectionSetupAllDevices) -> Self
fn from(packet: SetEventFilterConnectionSetupAllDevices) -> Self
Converts to this type from the input type.
Source§impl From<SetEventFilterConnectionSetupAllDevices> for Command
impl From<SetEventFilterConnectionSetupAllDevices> for Command
Source§fn from(packet: SetEventFilterConnectionSetupAllDevices) -> Command
fn from(packet: SetEventFilterConnectionSetupAllDevices) -> Command
Converts to this type from the input type.
Source§impl From<SetEventFilterConnectionSetupAllDevices> for SetEventFilter
impl From<SetEventFilterConnectionSetupAllDevices> for SetEventFilter
Source§fn from(packet: SetEventFilterConnectionSetupAllDevices) -> SetEventFilter
fn from(packet: SetEventFilterConnectionSetupAllDevices) -> SetEventFilter
Converts to this type from the input type.
Source§impl From<SetEventFilterConnectionSetupAllDevices> for SetEventFilterConnectionSetup
impl From<SetEventFilterConnectionSetupAllDevices> for SetEventFilterConnectionSetup
Source§fn from(
packet: SetEventFilterConnectionSetupAllDevices,
) -> SetEventFilterConnectionSetup
fn from( packet: SetEventFilterConnectionSetupAllDevices, ) -> SetEventFilterConnectionSetup
Converts to this type from the input type.
Source§impl From<SetEventFilterConnectionSetupAllDevices> for Vec<u8>
impl From<SetEventFilterConnectionSetupAllDevices> for Vec<u8>
Source§fn from(packet: SetEventFilterConnectionSetupAllDevices) -> Self
fn from(packet: SetEventFilterConnectionSetupAllDevices) -> Self
Converts to this type from the input type.
Source§impl From<SetEventFilterConnectionSetupAllDevicesBuilder> for SetEventFilterConnectionSetupAllDevices
impl From<SetEventFilterConnectionSetupAllDevicesBuilder> for SetEventFilterConnectionSetupAllDevices
Source§fn from(
builder: SetEventFilterConnectionSetupAllDevicesBuilder,
) -> SetEventFilterConnectionSetupAllDevices
fn from( builder: SetEventFilterConnectionSetupAllDevicesBuilder, ) -> SetEventFilterConnectionSetupAllDevices
Converts to this type from the input type.
Source§impl PartialEq for SetEventFilterConnectionSetupAllDevices
impl PartialEq for SetEventFilterConnectionSetupAllDevices
Source§fn eq(&self, other: &SetEventFilterConnectionSetupAllDevices) -> bool
fn eq(&self, other: &SetEventFilterConnectionSetupAllDevices) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SetEventFilterConnectionSetupAllDevices
impl StructuralPartialEq for SetEventFilterConnectionSetupAllDevices
Auto Trait Implementations§
impl !Freeze for SetEventFilterConnectionSetupAllDevices
impl RefUnwindSafe for SetEventFilterConnectionSetupAllDevices
impl Send for SetEventFilterConnectionSetupAllDevices
impl Sync for SetEventFilterConnectionSetupAllDevices
impl Unpin for SetEventFilterConnectionSetupAllDevices
impl UnwindSafe for SetEventFilterConnectionSetupAllDevices
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