pub enum VolumeAssignmentPolicy {
Unassigned,
Supervisor,
WeightedRoundRobin,
UnsupportedValue,
}Variants§
Unassigned
Newly created volumes are not assigned to physical functions, but are added to UnassignedVolumes in the Links property within this resource.
Supervisor
Newly created volumes are assigned to the supervisor function.
WeightedRoundRobin
Newly created volumes are assigned to the physical functions in a round-robin fashion.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for VolumeAssignmentPolicy
impl Clone for VolumeAssignmentPolicy
Source§fn clone(&self) -> VolumeAssignmentPolicy
fn clone(&self) -> VolumeAssignmentPolicy
Returns a duplicate of the value. Read more
1.0.0 · 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 VolumeAssignmentPolicy
impl Debug for VolumeAssignmentPolicy
Source§impl<'de> Deserialize<'de> for VolumeAssignmentPolicy
impl<'de> Deserialize<'de> for VolumeAssignmentPolicy
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 VolumeAssignmentPolicy
impl PartialEq for VolumeAssignmentPolicy
Source§impl Serialize for VolumeAssignmentPolicy
impl Serialize for VolumeAssignmentPolicy
Source§impl ToSnakeCase for VolumeAssignmentPolicy
impl ToSnakeCase for VolumeAssignmentPolicy
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for VolumeAssignmentPolicy
impl Eq for VolumeAssignmentPolicy
impl StructuralPartialEq for VolumeAssignmentPolicy
Auto Trait Implementations§
impl Freeze for VolumeAssignmentPolicy
impl RefUnwindSafe for VolumeAssignmentPolicy
impl Send for VolumeAssignmentPolicy
impl Sync for VolumeAssignmentPolicy
impl Unpin for VolumeAssignmentPolicy
impl UnsafeUnpin for VolumeAssignmentPolicy
impl UnwindSafe for VolumeAssignmentPolicy
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