#[non_exhaustive]pub struct RequestConfirmation {
pub adapter: String,
pub device: Address,
pub passkey: u32,
}Available on crate feature
bluetoothd only.Expand description
Arguments for a confirmation request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.adapter: StringAdapter making the request.
device: AddressAddress of device making the request.
passkey: u32Passkey.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RequestConfirmation
impl RefUnwindSafe for RequestConfirmation
impl Send for RequestConfirmation
impl Sync for RequestConfirmation
impl Unpin for RequestConfirmation
impl UnsafeUnpin for RequestConfirmation
impl UnwindSafe for RequestConfirmation
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