pub enum CompositionState {
Composing,
ComposedAndAvailable,
Composed,
Unused,
Failed,
Unavailable,
}Variants§
Composing
Intermediate state indicating composition is in progress.
ComposedAndAvailable
The resource block is currently participating in one or more compositions, and is available to use in more compositions. Added in version v1_1_0.
Composed
Final successful state of a resource block that has participated in composition.
Unused
The resource block is free and can participate in composition.
Failed
The final composition resulted in failure and manual intervention might be required to fix it.
The resource block has been made unavailable by the service, such as due to maintenance being performed on the resource block. Added in version v1_2_0.
Trait Implementations§
Source§impl Clone for CompositionState
impl Clone for CompositionState
Source§fn clone(&self) -> CompositionState
fn clone(&self) -> CompositionState
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 CompositionState
impl Debug for CompositionState
Source§impl Default for CompositionState
impl Default for CompositionState
Source§fn default() -> CompositionState
fn default() -> CompositionState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompositionState
impl<'de> Deserialize<'de> for CompositionState
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 Metadata<'static> for CompositionState
impl Metadata<'static> for CompositionState
Source§const JSON_SCHEMA: &'static str = "ResourceBlock.v1_4_1.json"
const JSON_SCHEMA: &'static str = "ResourceBlock.v1_4_1.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for CompositionState
impl RefUnwindSafe for CompositionState
impl Send for CompositionState
impl Sync for CompositionState
impl Unpin for CompositionState
impl UnwindSafe for CompositionState
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