pub struct VolumeListOkBody {
pub volumes: Vec<Volume>,
pub warnings: Vec<String>,
}
Expand description
VolumeListOKBody Volume list response
Fields§
§volumes: Vec<Volume>
List of volumes
warnings: Vec<String>
Warnings that occurred when fetching the list of volumes.
Trait Implementations§
Source§impl Clone for VolumeListOkBody
impl Clone for VolumeListOkBody
Source§fn clone(&self) -> VolumeListOkBody
fn clone(&self) -> VolumeListOkBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VolumeListOkBody
impl Debug for VolumeListOkBody
Source§impl<'de> Deserialize<'de> for VolumeListOkBody
impl<'de> Deserialize<'de> for VolumeListOkBody
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VolumeListOkBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VolumeListOkBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VolumeListOkBody
impl PartialEq for VolumeListOkBody
Source§impl Serialize for VolumeListOkBody
impl Serialize for VolumeListOkBody
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for VolumeListOkBody
Auto Trait Implementations§
impl Freeze for VolumeListOkBody
impl RefUnwindSafe for VolumeListOkBody
impl Send for VolumeListOkBody
impl Sync for VolumeListOkBody
impl Unpin for VolumeListOkBody
impl UnwindSafe for VolumeListOkBody
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