pub enum AccessState {
Optimized,
NonOptimized,
Standby,
Unavailable,
Transitioning,
}
Expand description
Describes the options for the access characteristics of an endpoint.
Variants§
Optimized
This value shall indicate each endpoint is in an active and optimized state.
NonOptimized
This value shall indicate each endpoint is in an active and non-optimized state.
Standby
This value shall indicate each endpoint is in a standby state.
This value shall indicate each endpoint is in an unavailable state.
Transitioning
This value shall indicate each endpoint is transitioning to a new state.
Trait Implementations§
Source§impl Clone for AccessState
impl Clone for AccessState
Source§fn clone(&self) -> AccessState
fn clone(&self) -> AccessState
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AccessState
impl Debug for AccessState
Source§impl Default for AccessState
impl Default for AccessState
Source§fn default() -> AccessState
fn default() -> AccessState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessState
impl<'de> Deserialize<'de> for AccessState
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 AccessState
impl Metadata<'static> for AccessState
Source§const JSON_SCHEMA: &'static str = "EndpointGroup.json"
const JSON_SCHEMA: &'static str = "EndpointGroup.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 AccessState
impl RefUnwindSafe for AccessState
impl Send for AccessState
impl Sync for AccessState
impl Unpin for AccessState
impl UnwindSafe for AccessState
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