pub struct Zone {Show 15 fields
pub odata_context: Option<Context>,
pub odata_etag: Option<Etag>,
pub odata_id: Id,
pub odata_type: Type,
pub actions: Option<Actions>,
pub default_routing_enabled: Option<bool>,
pub description: Option<Description>,
pub external_accessibility: Option<ExternalAccessibility>,
pub id: Id,
pub identifiers: Option<Vec<Identifier>>,
pub links: Option<Links>,
pub name: Name,
pub oem: Option<Oem>,
pub status: Option<Status>,
pub zone_type: Option<ZoneType>,
}
Expand description
The Zone schema describes a simple fabric zone for a Redfish implementation.
Fields§
§odata_context: Option<Context>
§odata_etag: Option<Etag>
§odata_id: Id
§odata_type: Type
§actions: Option<Actions>
§default_routing_enabled: Option<bool>
This property indicates whether routing within this zone is enabled.
description: Option<Description>
§external_accessibility: Option<ExternalAccessibility>
§id: Id
§identifiers: Option<Vec<Identifier>>
The durable names for the zone.
links: Option<Links>
§name: Name
§oem: Option<Oem>
§status: Option<Status>
§zone_type: Option<ZoneType>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Zone
impl<'de> Deserialize<'de> for Zone
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 Zone
impl Metadata<'static> for Zone
Source§const JSON_SCHEMA: &'static str = "Zone.v1_6_1.json"
const JSON_SCHEMA: &'static str = "Zone.v1_6_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 Zone
impl RefUnwindSafe for Zone
impl Send for Zone
impl Sync for Zone
impl Unpin for Zone
impl UnwindSafe for Zone
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