pub struct DiskList {
pub value: Vec<Disk>,
pub next_link: Option<String>,
}Expand description
The response of a list operation.
Fields§
§value: Vec<Disk>Results of the list operation.
next_link: Option<String>Link for next set of results.
Implementations§
Trait Implementations§
Source§impl Continuable for DiskList
impl Continuable for DiskList
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl<'de> Deserialize<'de> for DiskList
impl<'de> Deserialize<'de> for DiskList
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
impl StructuralPartialEq for DiskList
Auto Trait Implementations§
impl Freeze for DiskList
impl RefUnwindSafe for DiskList
impl Send for DiskList
impl Sync for DiskList
impl Unpin for DiskList
impl UnsafeUnpin for DiskList
impl UnwindSafe for DiskList
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