pub struct AvailableIp {
pub family: Option<i32>,
pub address: Option<String>,
pub vrf: Option<Option<Box<BriefVrf>>>,
pub description: Option<String>,
}Expand description
AvailableIp : Representation of an IP address which does not exist in the database.
Fields§
§family: Option<i32>§address: Option<String>§vrf: Option<Option<Box<BriefVrf>>>§description: Option<String>Implementations§
Source§impl AvailableIp
impl AvailableIp
Sourcepub fn new() -> AvailableIp
pub fn new() -> AvailableIp
Representation of an IP address which does not exist in the database.
Trait Implementations§
Source§impl Clone for AvailableIp
impl Clone for AvailableIp
Source§fn clone(&self) -> AvailableIp
fn clone(&self) -> AvailableIp
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 AvailableIp
impl Debug for AvailableIp
Source§impl Default for AvailableIp
impl Default for AvailableIp
Source§fn default() -> AvailableIp
fn default() -> AvailableIp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AvailableIp
impl<'de> Deserialize<'de> for AvailableIp
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 PartialEq for AvailableIp
impl PartialEq for AvailableIp
Source§impl Serialize for AvailableIp
impl Serialize for AvailableIp
impl StructuralPartialEq for AvailableIp
Auto Trait Implementations§
impl Freeze for AvailableIp
impl RefUnwindSafe for AvailableIp
impl Send for AvailableIp
impl Sync for AvailableIp
impl Unpin for AvailableIp
impl UnwindSafe for AvailableIp
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