pub struct ValuesBandwidth {
pub average_bandwidth_bytes: Option<f32>,
pub bandwidth_percentage: Option<f32>,
}
Fields§
§average_bandwidth_bytes: Option<f32>
The average bandwidth in bytes for responses to requests to the URL in the current dimension.
bandwidth_percentage: Option<f32>
The total bandwidth percentage for all responses to requests to the URL in the current dimension.
Implementations§
Source§impl ValuesBandwidth
impl ValuesBandwidth
pub fn new() -> ValuesBandwidth
Trait Implementations§
Source§impl Clone for ValuesBandwidth
impl Clone for ValuesBandwidth
Source§fn clone(&self) -> ValuesBandwidth
fn clone(&self) -> ValuesBandwidth
Returns a copy of the value. Read more
1.0.0 · 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 ValuesBandwidth
impl Debug for ValuesBandwidth
Source§impl Default for ValuesBandwidth
impl Default for ValuesBandwidth
Source§fn default() -> ValuesBandwidth
fn default() -> ValuesBandwidth
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValuesBandwidth
impl<'de> Deserialize<'de> for ValuesBandwidth
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ValuesBandwidth
impl PartialEq for ValuesBandwidth
Source§impl Serialize for ValuesBandwidth
impl Serialize for ValuesBandwidth
impl StructuralPartialEq for ValuesBandwidth
Auto Trait Implementations§
impl Freeze for ValuesBandwidth
impl RefUnwindSafe for ValuesBandwidth
impl Send for ValuesBandwidth
impl Sync for ValuesBandwidth
impl Unpin for ValuesBandwidth
impl UnwindSafe for ValuesBandwidth
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