pub struct AddressPool {Show 13 fields
pub odata_context: Option<Context>,
pub odata_etag: Option<Etag>,
pub odata_id: Id,
pub odata_type: Type,
pub actions: Option<Actions>,
pub description: Option<Description>,
pub ethernet: Option<Ethernet>,
pub gen_z: Option<GenZ>,
pub id: Id,
pub links: Option<Links>,
pub name: Name,
pub oem: Option<Oem>,
pub status: Option<Status>,
}Expand description
The schema definition of an address pool and its configuration.
Fields§
§odata_context: Option<Context>§odata_etag: Option<Etag>§odata_id: Id§odata_type: Type§actions: Option<Actions>§description: Option<Description>§ethernet: Option<Ethernet>§gen_z: Option<GenZ>§id: Id§links: Option<Links>§name: Name§oem: Option<Oem>§status: Option<Status>Trait Implementations§
Source§impl Clone for AddressPool
impl Clone for AddressPool
Source§fn clone(&self) -> AddressPool
fn clone(&self) -> AddressPool
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 AddressPool
impl Debug for AddressPool
Source§impl Default for AddressPool
impl Default for AddressPool
Source§impl<'de> Deserialize<'de> for AddressPool
impl<'de> Deserialize<'de> for AddressPool
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 AddressPool
impl Metadata<'static> for AddressPool
Source§const JSON_SCHEMA: &'static str = "AddressPool.v1_2_2.json"
const JSON_SCHEMA: &'static str = "AddressPool.v1_2_2.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 AddressPool
impl RefUnwindSafe for AddressPool
impl Send for AddressPool
impl Sync for AddressPool
impl Unpin for AddressPool
impl UnwindSafe for AddressPool
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