pub struct PeeringdbOrg {Show 20 fields
pub id: u32,
pub name: Option<String>,
pub aka: Option<String>,
pub name_long: Option<String>,
pub website: Option<String>,
pub notes: Option<String>,
pub require_2fa: Option<bool>,
pub address1: Option<String>,
pub address2: Option<String>,
pub city: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub zipcode: Option<String>,
pub floor: Option<String>,
pub suite: Option<String>,
pub latitude: Option<f64>,
pub longitude: Option<f64>,
pub created: Option<DateTime<Utc>>,
pub updated: Option<DateTime<Utc>>,
pub status: Option<String>,
}
Fields§
§id: u32
§name: Option<String>
§aka: Option<String>
§name_long: Option<String>
§website: Option<String>
§notes: Option<String>
§require_2fa: Option<bool>
§address1: Option<String>
§address2: Option<String>
§city: Option<String>
§country: Option<String>
§state: Option<String>
§zipcode: Option<String>
§floor: Option<String>
§suite: Option<String>
§latitude: Option<f64>
§longitude: Option<f64>
§created: Option<DateTime<Utc>>
§updated: Option<DateTime<Utc>>
§status: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PeeringdbOrg
impl<'de> Deserialize<'de> for PeeringdbOrg
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 PeeringdbOrg
impl RefUnwindSafe for PeeringdbOrg
impl Send for PeeringdbOrg
impl Sync for PeeringdbOrg
impl Unpin for PeeringdbOrg
impl UnwindSafe for PeeringdbOrg
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