pub struct ReadLocalSupportedCommandsCompleteBuilder {
pub num_hci_command_packets: u8,
pub status: ErrorCode,
pub supported_commands: [u8; 64],
}Fields§
§num_hci_command_packets: u8§status: ErrorCode§supported_commands: [u8; 64]Implementations§
Trait Implementations§
Source§impl From<ReadLocalSupportedCommandsCompleteBuilder> for CommandComplete
impl From<ReadLocalSupportedCommandsCompleteBuilder> for CommandComplete
Source§fn from(builder: ReadLocalSupportedCommandsCompleteBuilder) -> CommandComplete
fn from(builder: ReadLocalSupportedCommandsCompleteBuilder) -> CommandComplete
Converts to this type from the input type.
Source§impl From<ReadLocalSupportedCommandsCompleteBuilder> for Event
impl From<ReadLocalSupportedCommandsCompleteBuilder> for Event
Source§fn from(builder: ReadLocalSupportedCommandsCompleteBuilder) -> Event
fn from(builder: ReadLocalSupportedCommandsCompleteBuilder) -> Event
Converts to this type from the input type.
Source§impl From<ReadLocalSupportedCommandsCompleteBuilder> for ReadLocalSupportedCommandsComplete
impl From<ReadLocalSupportedCommandsCompleteBuilder> for ReadLocalSupportedCommandsComplete
Source§fn from(
builder: ReadLocalSupportedCommandsCompleteBuilder,
) -> ReadLocalSupportedCommandsComplete
fn from( builder: ReadLocalSupportedCommandsCompleteBuilder, ) -> ReadLocalSupportedCommandsComplete
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReadLocalSupportedCommandsCompleteBuilder
impl RefUnwindSafe for ReadLocalSupportedCommandsCompleteBuilder
impl Send for ReadLocalSupportedCommandsCompleteBuilder
impl Sync for ReadLocalSupportedCommandsCompleteBuilder
impl Unpin for ReadLocalSupportedCommandsCompleteBuilder
impl UnwindSafe for ReadLocalSupportedCommandsCompleteBuilder
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> 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