pub struct DescribeVolumesResult {
pub next_token: Option<String>,
pub volumes: Option<Vec<Volume>>,
}Fields§
§next_token: Option<String>The NextToken value to include in a future DescribeVolumes request. When the results of a DescribeVolumes request exceed MaxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
volumes: Option<Vec<Volume>>Information about the volumes.
Trait Implementations§
Source§impl Clone for DescribeVolumesResult
impl Clone for DescribeVolumesResult
Source§fn clone(&self) -> DescribeVolumesResult
fn clone(&self) -> DescribeVolumesResult
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 DescribeVolumesResult
impl Debug for DescribeVolumesResult
Source§impl Default for DescribeVolumesResult
impl Default for DescribeVolumesResult
Source§fn default() -> DescribeVolumesResult
fn default() -> DescribeVolumesResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeVolumesResult
impl PartialEq for DescribeVolumesResult
impl StructuralPartialEq for DescribeVolumesResult
Auto Trait Implementations§
impl Freeze for DescribeVolumesResult
impl RefUnwindSafe for DescribeVolumesResult
impl Send for DescribeVolumesResult
impl Sync for DescribeVolumesResult
impl Unpin for DescribeVolumesResult
impl UnwindSafe for DescribeVolumesResult
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