pub enum DiskType {
Private,
Public,
Shared,
}Expand description
Type of virtual disk (storage area).
Variants§
Private
Private disk - encrypted, local-only storage.
Public
Public disk - content-addressed, distributed storage.
Shared disk - group-accessible with shared encryption.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DiskType
impl<'de> Deserialize<'de> for DiskType
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 Copy for DiskType
impl Eq for DiskType
impl StructuralPartialEq for DiskType
Auto Trait Implementations§
impl Freeze for DiskType
impl RefUnwindSafe for DiskType
impl Send for DiskType
impl Sync for DiskType
impl Unpin for DiskType
impl UnsafeUnpin for DiskType
impl UnwindSafe for DiskType
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