pub struct IPv6AddressPolicyEntry {
pub label: Option<i64>,
pub precedence: Option<i64>,
pub prefix: Option<String>,
}
Expand description
The entry in the RFC6724-defined address selection policy table.
Fields§
§label: Option<i64>
The IPv6 label, as defined in RFC6724, section 2.1.
precedence: Option<i64>
The IPv6 precedence, as defined in RFC6724, section 2.1.
prefix: Option<String>
The IPv6 address prefix, as defined in RFC6724, section 2.1.
Trait Implementations§
Source§impl Clone for IPv6AddressPolicyEntry
impl Clone for IPv6AddressPolicyEntry
Source§fn clone(&self) -> IPv6AddressPolicyEntry
fn clone(&self) -> IPv6AddressPolicyEntry
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 IPv6AddressPolicyEntry
impl Debug for IPv6AddressPolicyEntry
Source§impl Default for IPv6AddressPolicyEntry
impl Default for IPv6AddressPolicyEntry
Source§impl<'de> Deserialize<'de> for IPv6AddressPolicyEntry
impl<'de> Deserialize<'de> for IPv6AddressPolicyEntry
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 IPv6AddressPolicyEntry
impl Metadata<'static> for IPv6AddressPolicyEntry
Source§const JSON_SCHEMA: &'static str = "EthernetInterface.v1_10_0.json"
const JSON_SCHEMA: &'static str = "EthernetInterface.v1_10_0.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 IPv6AddressPolicyEntry
impl RefUnwindSafe for IPv6AddressPolicyEntry
impl Send for IPv6AddressPolicyEntry
impl Sync for IPv6AddressPolicyEntry
impl Unpin for IPv6AddressPolicyEntry
impl UnwindSafe for IPv6AddressPolicyEntry
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