pub enum VolumeType {
Arbiter,
Distribute,
Stripe,
Replicate,
StripedAndReplicate,
Disperse,
DistributedAndStripe,
DistributedAndReplicate,
DistributedAndStripedAndReplicate,
DistributedAndDisperse,
}Expand description
These are all the different Volume types that are possible in Gluster Note: Tier is not represented here because I’m waiting for it to become more stable For more information about these types see: [Gluster Volume] (https://gluster.readthedocs. org/en/latest/Administrator%20Guide/Setting%20Up%20Volumes/)
Variants§
Arbiter
Distribute
Stripe
Replicate
StripedAndReplicate
Disperse
DistributedAndStripe
DistributedAndReplicate
DistributedAndStripedAndReplicate
DistributedAndDisperse
Implementations§
Source§impl VolumeType
impl VolumeType
Trait Implementations§
Source§impl Debug for VolumeType
impl Debug for VolumeType
Source§impl<'de> Deserialize<'de> for VolumeType
impl<'de> Deserialize<'de> for VolumeType
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
Source§impl PartialEq for VolumeType
impl PartialEq for VolumeType
impl Eq for VolumeType
impl StructuralPartialEq for VolumeType
Auto Trait Implementations§
impl Freeze for VolumeType
impl RefUnwindSafe for VolumeType
impl Send for VolumeType
impl Sync for VolumeType
impl Unpin for VolumeType
impl UnwindSafe for VolumeType
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