pub struct Domain {
pub object: Object,
pub id: String,
pub name: String,
pub is_satellite: bool,
pub frontend_api_url: String,
pub accounts_portal_url: Option<Option<String>>,
pub proxy_url: Option<Option<String>>,
pub development_origin: String,
pub cname_targets: Option<Option<Vec<CNameTarget>>>,
}Fields§
§object: Object§id: String§name: String§is_satellite: bool§frontend_api_url: String§accounts_portal_url: Option<Option<String>>Null for satellite domains.
proxy_url: Option<Option<String>>§development_origin: String§cname_targets: Option<Option<Vec<CNameTarget>>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Domain
impl<'de> Deserialize<'de> for Domain
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
impl StructuralPartialEq for Domain
Auto Trait Implementations§
impl Freeze for Domain
impl RefUnwindSafe for Domain
impl Send for Domain
impl Sync for Domain
impl Unpin for Domain
impl UnwindSafe for Domain
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