pub struct CompatibleStorage {
pub id: i64,
pub uuid: String,
pub name: String,
pub storage_type: String,
pub provider_type: String,
pub volumes: Vec<CompatibleVolume>,
}Fields§
§id: i64§uuid: String§name: String§storage_type: String§provider_type: String§volumes: Vec<CompatibleVolume>Trait Implementations§
Source§impl Clone for CompatibleStorage
impl Clone for CompatibleStorage
Source§fn clone(&self) -> CompatibleStorage
fn clone(&self) -> CompatibleStorage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompatibleStorage
impl Debug for CompatibleStorage
Source§impl<'de> Deserialize<'de> for CompatibleStorage
impl<'de> Deserialize<'de> for CompatibleStorage
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
Auto Trait Implementations§
impl Freeze for CompatibleStorage
impl RefUnwindSafe for CompatibleStorage
impl Send for CompatibleStorage
impl Sync for CompatibleStorage
impl Unpin for CompatibleStorage
impl UnsafeUnpin for CompatibleStorage
impl UnwindSafe for CompatibleStorage
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