struct BandwidthRequest {
average_bandwidth_bps: u64,
peak_bandwidth_bps: u64,
}
Fields§
§average_bandwidth_bps: u64
§peak_bandwidth_bps: u64
Trait Implementations§
Source§impl Debug for BandwidthRequest
impl Debug for BandwidthRequest
Source§impl PartialEq for BandwidthRequest
impl PartialEq for BandwidthRequest
impl Eq for BandwidthRequest
impl StructuralPartialEq for BandwidthRequest
Auto Trait Implementations§
impl Freeze for BandwidthRequest
impl RefUnwindSafe for BandwidthRequest
impl Send for BandwidthRequest
impl Sync for BandwidthRequest
impl Unpin for BandwidthRequest
impl UnwindSafe for BandwidthRequest
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> IntoAny for T
impl<T> IntoAny for T
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