pub struct DescribeVolumeStatusResult {
pub next_token: Option<String>,
pub volume_statuses: Option<Vec<VolumeStatusItem>>,
}Fields§
§next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
volume_statuses: Option<Vec<VolumeStatusItem>>Information about the status of the volumes.
Trait Implementations§
Source§impl Clone for DescribeVolumeStatusResult
impl Clone for DescribeVolumeStatusResult
Source§fn clone(&self) -> DescribeVolumeStatusResult
fn clone(&self) -> DescribeVolumeStatusResult
Returns a duplicate 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 DescribeVolumeStatusResult
impl Debug for DescribeVolumeStatusResult
Source§impl Default for DescribeVolumeStatusResult
impl Default for DescribeVolumeStatusResult
Source§fn default() -> DescribeVolumeStatusResult
fn default() -> DescribeVolumeStatusResult
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeVolumeStatusResult
Auto Trait Implementations§
impl Freeze for DescribeVolumeStatusResult
impl RefUnwindSafe for DescribeVolumeStatusResult
impl Send for DescribeVolumeStatusResult
impl Sync for DescribeVolumeStatusResult
impl Unpin for DescribeVolumeStatusResult
impl UnwindSafe for DescribeVolumeStatusResult
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