pub struct CreateOnboardingLinkResponse {
pub onboarding_portal_token: String,
}Fields§
§onboarding_portal_token: StringThe onboarding to redirect the user to for organization setup.
Implementations§
Source§impl CreateOnboardingLinkResponse
impl CreateOnboardingLinkResponse
pub fn new(onboarding_portal_token: String) -> CreateOnboardingLinkResponse
Trait Implementations§
Source§impl Clone for CreateOnboardingLinkResponse
impl Clone for CreateOnboardingLinkResponse
Source§fn clone(&self) -> CreateOnboardingLinkResponse
fn clone(&self) -> CreateOnboardingLinkResponse
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 CreateOnboardingLinkResponse
impl Debug for CreateOnboardingLinkResponse
Source§impl Default for CreateOnboardingLinkResponse
impl Default for CreateOnboardingLinkResponse
Source§fn default() -> CreateOnboardingLinkResponse
fn default() -> CreateOnboardingLinkResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateOnboardingLinkResponse
impl<'de> Deserialize<'de> for CreateOnboardingLinkResponse
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 CreateOnboardingLinkResponse
impl PartialEq for CreateOnboardingLinkResponse
Source§fn eq(&self, other: &CreateOnboardingLinkResponse) -> bool
fn eq(&self, other: &CreateOnboardingLinkResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateOnboardingLinkResponse
Auto Trait Implementations§
impl Freeze for CreateOnboardingLinkResponse
impl RefUnwindSafe for CreateOnboardingLinkResponse
impl Send for CreateOnboardingLinkResponse
impl Sync for CreateOnboardingLinkResponse
impl Unpin for CreateOnboardingLinkResponse
impl UnsafeUnpin for CreateOnboardingLinkResponse
impl UnwindSafe for CreateOnboardingLinkResponse
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