pub struct AddDomainRequest {
pub name: String,
pub is_satellite: bool,
pub proxy_url: Option<String>,
}Fields§
§name: StringThe new domain name. Can contain the port for development instances.
is_satellite: boolMarks the new domain as satellite. Only true is accepted at the moment.
proxy_url: Option<String>The full URL of the proxy which will forward requests to the Clerk Frontend API for this domain. Applicable only to production instances.
Implementations§
Source§impl AddDomainRequest
impl AddDomainRequest
pub fn new(name: String, is_satellite: bool) -> AddDomainRequest
Trait Implementations§
Source§impl Clone for AddDomainRequest
impl Clone for AddDomainRequest
Source§fn clone(&self) -> AddDomainRequest
fn clone(&self) -> AddDomainRequest
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 AddDomainRequest
impl Debug for AddDomainRequest
Source§impl<'de> Deserialize<'de> for AddDomainRequest
impl<'de> Deserialize<'de> for AddDomainRequest
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 AddDomainRequest
impl PartialEq for AddDomainRequest
Source§impl Serialize for AddDomainRequest
impl Serialize for AddDomainRequest
impl StructuralPartialEq for AddDomainRequest
Auto Trait Implementations§
impl Freeze for AddDomainRequest
impl RefUnwindSafe for AddDomainRequest
impl Send for AddDomainRequest
impl Sync for AddDomainRequest
impl Unpin for AddDomainRequest
impl UnwindSafe for AddDomainRequest
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