pub struct AgentSignup {
pub human_email: String,
pub username: String,
pub source: Option<String>,
pub referrer: Option<String>,
}Expand description
Request body for Client::agent_sign_up: start onboarding a new agent,
which emails a one-time code to human_email.
Fields§
§human_email: StringThe human’s email, which receives the verification code.
username: StringThe desired inbox username.
source: Option<String>Where the signup originated, optional.
referrer: Option<String>Referrer, optional.
Trait Implementations§
Source§impl Clone for AgentSignup
impl Clone for AgentSignup
Source§fn clone(&self) -> AgentSignup
fn clone(&self) -> AgentSignup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AgentSignup
impl Debug for AgentSignup
Source§impl Default for AgentSignup
impl Default for AgentSignup
Source§fn default() -> AgentSignup
fn default() -> AgentSignup
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AgentSignup
impl RefUnwindSafe for AgentSignup
impl Send for AgentSignup
impl Sync for AgentSignup
impl Unpin for AgentSignup
impl UnsafeUnpin for AgentSignup
impl UnwindSafe for AgentSignup
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