pub struct PeeringdbNetixlan {Show 16 fields
pub id: u32,
pub net_id: Option<u32>,
pub ix_id: Option<u32>,
pub name: Option<String>,
pub ixlan_id: Option<u32>,
pub notes: Option<String>,
pub speed: Option<u64>,
pub asn: Option<u32>,
pub ipaddr4: Option<IpAddr>,
pub ipaddr6: Option<IpAddr>,
pub is_rs_peer: Option<bool>,
pub bfd_support: Option<bool>,
pub operational: Option<bool>,
pub created: Option<DateTime<Utc>>,
pub updated: Option<DateTime<Utc>>,
pub status: Option<String>,
}
Fields§
§id: u32
§net_id: Option<u32>
§ix_id: Option<u32>
§name: Option<String>
§ixlan_id: Option<u32>
§notes: Option<String>
§speed: Option<u64>
§asn: Option<u32>
§ipaddr4: Option<IpAddr>
§ipaddr6: Option<IpAddr>
§is_rs_peer: Option<bool>
§bfd_support: Option<bool>
§operational: Option<bool>
§created: Option<DateTime<Utc>>
§updated: Option<DateTime<Utc>>
§status: Option<String>
Trait Implementations§
Source§impl Clone for PeeringdbNetixlan
impl Clone for PeeringdbNetixlan
Source§fn clone(&self) -> PeeringdbNetixlan
fn clone(&self) -> PeeringdbNetixlan
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 PeeringdbNetixlan
impl Debug for PeeringdbNetixlan
Source§impl<'de> Deserialize<'de> for PeeringdbNetixlan
impl<'de> Deserialize<'de> for PeeringdbNetixlan
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
Auto Trait Implementations§
impl Freeze for PeeringdbNetixlan
impl RefUnwindSafe for PeeringdbNetixlan
impl Send for PeeringdbNetixlan
impl Sync for PeeringdbNetixlan
impl Unpin for PeeringdbNetixlan
impl UnwindSafe for PeeringdbNetixlan
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