pub struct RouteTargetRange {
pub lower: Option<i64>,
pub upper: Option<i64>,
}Expand description
The Route Target (RT) number range for the fabric.
Fields§
§lower: Option<i64>Lower Route Target (RT) number.
upper: Option<i64>Upper Route Target (RT) number.
Trait Implementations§
Source§impl Clone for RouteTargetRange
impl Clone for RouteTargetRange
Source§fn clone(&self) -> RouteTargetRange
fn clone(&self) -> RouteTargetRange
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 RouteTargetRange
impl Debug for RouteTargetRange
Source§impl Default for RouteTargetRange
impl Default for RouteTargetRange
Source§impl<'de> Deserialize<'de> for RouteTargetRange
impl<'de> Deserialize<'de> for RouteTargetRange
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 RouteTargetRange
impl Metadata<'static> for RouteTargetRange
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 RouteTargetRange
impl RefUnwindSafe for RouteTargetRange
impl Send for RouteTargetRange
impl Sync for RouteTargetRange
impl Unpin for RouteTargetRange
impl UnwindSafe for RouteTargetRange
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