pub struct BleNodeBackendConfig {
pub mtu_hint: u16,
pub max_inbound_frames: usize,
pub max_outbound_frames: usize,
pub ordered_delivery: bool,
}Fields§
§mtu_hint: u16§max_inbound_frames: usize§max_outbound_frames: usize§ordered_delivery: boolTrait Implementations§
Source§impl Clone for BleNodeBackendConfig
impl Clone for BleNodeBackendConfig
Source§fn clone(&self) -> BleNodeBackendConfig
fn clone(&self) -> BleNodeBackendConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BleNodeBackendConfig
impl Debug for BleNodeBackendConfig
Source§impl Default for BleNodeBackendConfig
impl Default for BleNodeBackendConfig
impl Eq for BleNodeBackendConfig
Source§impl From<&BleNodeBackendConfig> for BleShimConfig
impl From<&BleNodeBackendConfig> for BleShimConfig
Source§fn from(value: &BleNodeBackendConfig) -> Self
fn from(value: &BleNodeBackendConfig) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BleNodeBackendConfig
impl PartialEq for BleNodeBackendConfig
Source§fn eq(&self, other: &BleNodeBackendConfig) -> bool
fn eq(&self, other: &BleNodeBackendConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BleNodeBackendConfig
Auto Trait Implementations§
impl Freeze for BleNodeBackendConfig
impl RefUnwindSafe for BleNodeBackendConfig
impl Send for BleNodeBackendConfig
impl Sync for BleNodeBackendConfig
impl Unpin for BleNodeBackendConfig
impl UnsafeUnpin for BleNodeBackendConfig
impl UnwindSafe for BleNodeBackendConfig
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