#[non_exhaustive]pub struct RangeInfo {
pub range_name: String,
pub utilization: f64,
/* private fields */
}Expand description
RangeInfo contains the range name and the range utilization by this cluster.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.range_name: StringOutput only. Name of a range.
utilization: f64Output only. The utilization of the range.
Implementations§
Source§impl RangeInfo
impl RangeInfo
pub fn new() -> Self
Sourcepub fn set_range_name<T: Into<String>>(self, v: T) -> Self
pub fn set_range_name<T: Into<String>>(self, v: T) -> Self
Sets the value of range_name.
Sourcepub fn set_utilization<T: Into<f64>>(self, v: T) -> Self
pub fn set_utilization<T: Into<f64>>(self, v: T) -> Self
Sets the value of utilization.
Trait Implementations§
impl StructuralPartialEq for RangeInfo
Auto Trait Implementations§
impl Freeze for RangeInfo
impl RefUnwindSafe for RangeInfo
impl Send for RangeInfo
impl Sync for RangeInfo
impl Unpin for RangeInfo
impl UnwindSafe for RangeInfo
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