Struct L2CapCocConnect

Source
pub struct L2CapCocConnect {
    pub conn_handle: ConnectionHandle,
    pub spsm: u16,
    pub mtu: u16,
    pub mps: u16,
    pub initial_credits: u16,
    pub channel_number: u8,
}
Expand description

This event is generated when receiving a valid Credit Based Connection Request packet.

See Bluetooth spec. v.5.4 [Vol 3, Part A].

Fields§

§conn_handle: ConnectionHandle

handle of the connection where this event occured.

§spsm: u16

Simplified Protocol/Service Multiplexer

Values:

  • 0x0000 .. 0x00FF
§mtu: u16

Maximum Transmission Unit

Values:

  • 23 .. 65535
§mps: u16

Maximum Payload Size (in octets)

Values:

  • 23 .. 248
§initial_credits: u16

Number of K-frames that can be received on the created channel(s) by the L2CAP layer entity sending this packet.

Values:

  • 0 .. 65535
§channel_number: u8

Number of channels to be created. If this parameter is set to 0, it requests the creation of one LE credit based connection- oriented channel. Otherwise, it requests the creation of one or more enhanced credit based connection-oriented channels.

Values:

  • 0 .. 5

Trait Implementations§

Source§

impl Clone for L2CapCocConnect

Source§

fn clone(&self) -> L2CapCocConnect

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for L2CapCocConnect

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for L2CapCocConnect

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.