pub struct AutoConnectionEstablishmentParameters<'a> {
pub scan_window: ScanWindow,
pub own_address_type: OwnAddressType,
pub conn_interval: ConnectionInterval,
pub expected_connection_length: ExpectedConnectionLength,
pub white_list: &'a [PeerAddrType],
}
Expand description
Parameters for the GAP Start Auto Connection Establishment command.
Fields§
§scan_window: ScanWindow
Scanning window for connection establishment.
own_address_type: OwnAddressType
Address type of this device.
conn_interval: ConnectionInterval
Connection interval parameters.
expected_connection_length: ExpectedConnectionLength
Expected connection length
white_list: &'a [PeerAddrType]
Addresses to white-list for automatic connection.
Auto Trait Implementations§
impl<'a> Freeze for AutoConnectionEstablishmentParameters<'a>
impl<'a> RefUnwindSafe for AutoConnectionEstablishmentParameters<'a>
impl<'a> Send for AutoConnectionEstablishmentParameters<'a>
impl<'a> Sync for AutoConnectionEstablishmentParameters<'a>
impl<'a> Unpin for AutoConnectionEstablishmentParameters<'a>
impl<'a> UnwindSafe for AutoConnectionEstablishmentParameters<'a>
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