pub struct StoragePool {
pub name: String,
pub driver: String,
pub status: String,
pub config: Value,
}Fields§
§name: String§driver: String§status: String§config: ValueTrait Implementations§
Source§impl Clone for StoragePool
impl Clone for StoragePool
Source§fn clone(&self) -> StoragePool
fn clone(&self) -> StoragePool
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 StoragePool
impl Debug for StoragePool
Source§impl<'de> Deserialize<'de> for StoragePool
impl<'de> Deserialize<'de> for StoragePool
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 StoragePool
impl RefUnwindSafe for StoragePool
impl Send for StoragePool
impl Sync for StoragePool
impl Unpin for StoragePool
impl UnsafeUnpin for StoragePool
impl UnwindSafe for StoragePool
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