pub struct VLANIdentifierAddressRange {
pub lower: Option<i64>,
pub upper: Option<i64>,
}Expand description
VLAN tag related addressing for an Ethernet fabric or for end host networks.
Fields§
§lower: Option<i64>Virtual LAN (VLAN) tag lower value.
upper: Option<i64>Virtual LAN (VLAN) tag upper value.
Trait Implementations§
Source§impl Clone for VLANIdentifierAddressRange
impl Clone for VLANIdentifierAddressRange
Source§fn clone(&self) -> VLANIdentifierAddressRange
fn clone(&self) -> VLANIdentifierAddressRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VLANIdentifierAddressRange
impl Debug for VLANIdentifierAddressRange
Source§impl Default for VLANIdentifierAddressRange
impl Default for VLANIdentifierAddressRange
Source§impl<'de> Deserialize<'de> for VLANIdentifierAddressRange
impl<'de> Deserialize<'de> for VLANIdentifierAddressRange
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 VLANIdentifierAddressRange
impl Metadata<'static> for VLANIdentifierAddressRange
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 VLANIdentifierAddressRange
impl RefUnwindSafe for VLANIdentifierAddressRange
impl Send for VLANIdentifierAddressRange
impl Sync for VLANIdentifierAddressRange
impl Unpin for VLANIdentifierAddressRange
impl UnsafeUnpin for VLANIdentifierAddressRange
impl UnwindSafe for VLANIdentifierAddressRange
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