pub struct QosSetupCompleteBuilder {
pub connection_handle: u16,
pub delay_variation: u32,
pub latency: u32,
pub peak_bandwidth: u32,
pub service_type: ServiceType,
pub status: ErrorCode,
pub token_rate: u32,
}Fields§
§connection_handle: u16§delay_variation: u32§latency: u32§peak_bandwidth: u32§service_type: ServiceType§status: ErrorCode§token_rate: u32Implementations§
Source§impl QosSetupCompleteBuilder
impl QosSetupCompleteBuilder
pub fn build(self) -> QosSetupComplete
Trait Implementations§
Source§impl Debug for QosSetupCompleteBuilder
impl Debug for QosSetupCompleteBuilder
Source§impl From<QosSetupCompleteBuilder> for Event
impl From<QosSetupCompleteBuilder> for Event
Source§fn from(builder: QosSetupCompleteBuilder) -> Event
fn from(builder: QosSetupCompleteBuilder) -> Event
Converts to this type from the input type.
Source§impl From<QosSetupCompleteBuilder> for QosSetupComplete
impl From<QosSetupCompleteBuilder> for QosSetupComplete
Source§fn from(builder: QosSetupCompleteBuilder) -> QosSetupComplete
fn from(builder: QosSetupCompleteBuilder) -> QosSetupComplete
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QosSetupCompleteBuilder
impl RefUnwindSafe for QosSetupCompleteBuilder
impl Send for QosSetupCompleteBuilder
impl Sync for QosSetupCompleteBuilder
impl Unpin for QosSetupCompleteBuilder
impl UnwindSafe for QosSetupCompleteBuilder
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more