pub struct GetDisksResult {
pub disks: Option<Vec<Disk>>,
pub next_page_token: Option<String>,
}
Fields§
§disks: Option<Vec<Disk>>
An array of objects containing information about all block storage disks.
next_page_token: Option<String>
The token to advance to the next page of resutls from your request.
A next page token is not returned if there are no more results to display.
To get the next page of results, perform another GetDisks
request and specify the next page token using the pageToken
parameter.
Trait Implementations§
Source§impl Clone for GetDisksResult
impl Clone for GetDisksResult
Source§fn clone(&self) -> GetDisksResult
fn clone(&self) -> GetDisksResult
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 GetDisksResult
impl Debug for GetDisksResult
Source§impl Default for GetDisksResult
impl Default for GetDisksResult
Source§fn default() -> GetDisksResult
fn default() -> GetDisksResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetDisksResult
impl<'de> Deserialize<'de> for GetDisksResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetDisksResult
impl PartialEq for GetDisksResult
impl StructuralPartialEq for GetDisksResult
Auto Trait Implementations§
impl Freeze for GetDisksResult
impl RefUnwindSafe for GetDisksResult
impl Send for GetDisksResult
impl Sync for GetDisksResult
impl Unpin for GetDisksResult
impl UnwindSafe for GetDisksResult
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