pub struct VerifyDomainProxyRequest {
pub domain_id: Option<String>,
pub proxy_url: Option<String>,
}Fields§
§domain_id: Option<String>The ID of the domain that will be updated.
proxy_url: Option<String>The full URL of the proxy which will forward requests to the Clerk Frontend API for this domain. e.g. https://example.com/__clerk
Implementations§
Source§impl VerifyDomainProxyRequest
impl VerifyDomainProxyRequest
pub fn new() -> VerifyDomainProxyRequest
Trait Implementations§
Source§impl Clone for VerifyDomainProxyRequest
impl Clone for VerifyDomainProxyRequest
Source§fn clone(&self) -> VerifyDomainProxyRequest
fn clone(&self) -> VerifyDomainProxyRequest
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 VerifyDomainProxyRequest
impl Debug for VerifyDomainProxyRequest
Source§impl<'de> Deserialize<'de> for VerifyDomainProxyRequest
impl<'de> Deserialize<'de> for VerifyDomainProxyRequest
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 VerifyDomainProxyRequest
impl PartialEq for VerifyDomainProxyRequest
Source§impl Serialize for VerifyDomainProxyRequest
impl Serialize for VerifyDomainProxyRequest
impl StructuralPartialEq for VerifyDomainProxyRequest
Auto Trait Implementations§
impl Freeze for VerifyDomainProxyRequest
impl RefUnwindSafe for VerifyDomainProxyRequest
impl Send for VerifyDomainProxyRequest
impl Sync for VerifyDomainProxyRequest
impl Unpin for VerifyDomainProxyRequest
impl UnwindSafe for VerifyDomainProxyRequest
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