Struct aws_sdk_datasync::types::Latency
source · #[non_exhaustive]pub struct Latency {
pub read: Option<f64>,
pub write: Option<f64>,
pub other: Option<f64>,
}
Expand description
The latency peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
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.read: Option<f64>
Peak latency for read operations.
write: Option<f64>
Peak latency for write operations.
other: Option<f64>
Peak latency for operations unrelated to read and write operations.
Implementations§
Trait Implementations§
source§impl PartialEq<Latency> for Latency
impl PartialEq<Latency> for Latency
impl StructuralPartialEq for Latency
Auto Trait Implementations§
impl RefUnwindSafe for Latency
impl Send for Latency
impl Sync for Latency
impl Unpin for Latency
impl UnwindSafe for Latency
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