pub struct FlowSpecificationComplete {
pub status: Status,
pub handle: ConnHandle,
pub unused: u8,
pub flow_direction: FlowDirection,
pub service_type: ServiceType,
pub token_rate: u32,
pub token_bucket_size: u32,
pub peak_bandwidth: u32,
pub access_latency: u32,
}Expand description
Flow Specification Complete event ๐
Fieldsยง
ยงstatus: Statusstatus
handle: ConnHandlehandle
unused: u8unused
flow_direction: FlowDirectionflow_direction
service_type: ServiceTypeservice_type
token_rate: u32token_rate
token_bucket_size: u32token_bucket_size
peak_bandwidth: u32peak_bandwidth
access_latency: u32access_latency
Trait Implementationsยง
Sourceยงimpl Clone for FlowSpecificationComplete
impl Clone for FlowSpecificationComplete
Sourceยงfn clone(&self) -> FlowSpecificationComplete
fn clone(&self) -> FlowSpecificationComplete
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 FlowSpecificationComplete
impl Debug for FlowSpecificationComplete
Sourceยงimpl<'a> EventParams<'a> for FlowSpecificationComplete
impl<'a> EventParams<'a> for FlowSpecificationComplete
Sourceยงconst EVENT_CODE: u8 = 0x21
const EVENT_CODE: u8 = 0x21
The event code these parameters are for
Sourceยงimpl<'a> FromHciBytes<'a> for FlowSpecificationComplete
impl<'a> FromHciBytes<'a> for FlowSpecificationComplete
Sourceยงfn from_hci_bytes(data: &'a [u8]) -> Result<(Self, &'a [u8]), FromHciBytesError>
fn from_hci_bytes(data: &'a [u8]) -> Result<(Self, &'a [u8]), FromHciBytesError>
Deserialize bytes into a HCI type, return additional bytes.
Sourceยงfn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
fn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
Deserialize bytes into a HCI type, must consume all bytes.
Sourceยงimpl Hash for FlowSpecificationComplete
impl Hash for FlowSpecificationComplete
impl Copy for FlowSpecificationComplete
Auto Trait Implementationsยง
impl Freeze for FlowSpecificationComplete
impl RefUnwindSafe for FlowSpecificationComplete
impl Send for FlowSpecificationComplete
impl Sync for FlowSpecificationComplete
impl Unpin for FlowSpecificationComplete
impl UnsafeUnpin for FlowSpecificationComplete
impl UnwindSafe for FlowSpecificationComplete
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