Struct aws_sdk_datasync::types::MaxP95Performance
source · #[non_exhaustive]pub struct MaxP95Performance { /* private fields */ }
Expand description
The performance data that DataSync Discovery collects about an on-premises storage system resource.
Implementations§
source§impl MaxP95Performance
impl MaxP95Performance
sourcepub fn iops_write(&self) -> Option<f64>
pub fn iops_write(&self) -> Option<f64>
Peak IOPS related to write operations.
sourcepub fn iops_other(&self) -> Option<f64>
pub fn iops_other(&self) -> Option<f64>
Peak IOPS unrelated to read and write operations.
sourcepub fn iops_total(&self) -> Option<f64>
pub fn iops_total(&self) -> Option<f64>
Peak total IOPS on your on-premises storage system resource.
sourcepub fn throughput_read(&self) -> Option<f64>
pub fn throughput_read(&self) -> Option<f64>
Peak throughput related to read operations.
sourcepub fn throughput_write(&self) -> Option<f64>
pub fn throughput_write(&self) -> Option<f64>
Peak throughput related to write operations.
sourcepub fn throughput_other(&self) -> Option<f64>
pub fn throughput_other(&self) -> Option<f64>
Peak throughput unrelated to read and write operations.
sourcepub fn throughput_total(&self) -> Option<f64>
pub fn throughput_total(&self) -> Option<f64>
Peak total throughput on your on-premises storage system resource.
sourcepub fn latency_read(&self) -> Option<f64>
pub fn latency_read(&self) -> Option<f64>
Peak latency for read operations.
sourcepub fn latency_write(&self) -> Option<f64>
pub fn latency_write(&self) -> Option<f64>
Peak latency for write operations.
sourcepub fn latency_other(&self) -> Option<f64>
pub fn latency_other(&self) -> Option<f64>
Peak latency for operations unrelated to read and write operations.
source§impl MaxP95Performance
impl MaxP95Performance
sourcepub fn builder() -> MaxP95PerformanceBuilder
pub fn builder() -> MaxP95PerformanceBuilder
Creates a new builder-style object to manufacture MaxP95Performance
.
Trait Implementations§
source§impl Clone for MaxP95Performance
impl Clone for MaxP95Performance
source§fn clone(&self) -> MaxP95Performance
fn clone(&self) -> MaxP95Performance
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 MaxP95Performance
impl Debug for MaxP95Performance
source§impl PartialEq<MaxP95Performance> for MaxP95Performance
impl PartialEq<MaxP95Performance> for MaxP95Performance
source§fn eq(&self, other: &MaxP95Performance) -> bool
fn eq(&self, other: &MaxP95Performance) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MaxP95Performance
Auto Trait Implementations§
impl RefUnwindSafe for MaxP95Performance
impl Send for MaxP95Performance
impl Sync for MaxP95Performance
impl Unpin for MaxP95Performance
impl UnwindSafe for MaxP95Performance
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