pub struct BleShimConfig {
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 BleShimConfig
impl Clone for BleShimConfig
Source§fn clone(&self) -> BleShimConfig
fn clone(&self) -> BleShimConfig
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 moreimpl Copy for BleShimConfig
Source§impl Debug for BleShimConfig
impl Debug for BleShimConfig
Source§impl Default for BleShimConfig
impl Default for BleShimConfig
impl Eq for BleShimConfig
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 BleShimConfig
impl PartialEq for BleShimConfig
Source§fn eq(&self, other: &BleShimConfig) -> bool
fn eq(&self, other: &BleShimConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BleShimConfig
Auto Trait Implementations§
impl Freeze for BleShimConfig
impl RefUnwindSafe for BleShimConfig
impl Send for BleShimConfig
impl Sync for BleShimConfig
impl Unpin for BleShimConfig
impl UnsafeUnpin for BleShimConfig
impl UnwindSafe for BleShimConfig
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