pub struct KycSession {
pub email: Option<String>,
pub ref: Option<String>,
pub status: Option<String>,
pub verify_url: Option<String>,
}Fields§
§email: Option<String>Email is the founder the session belongs to.
ref: Option<String>Ref is the provider’s reference for the session.
status: Option<String>Status is the session’s status at start, which is always pending.
verify_url: Option<String>VerifyURL is the hosted flow the founder visits; empty for the manual provider.
Implementations§
Source§impl KycSession
impl KycSession
pub fn new() -> KycSession
Trait Implementations§
Source§impl Clone for KycSession
impl Clone for KycSession
Source§fn clone(&self) -> KycSession
fn clone(&self) -> KycSession
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 KycSession
impl Debug for KycSession
Source§impl Default for KycSession
impl Default for KycSession
Source§fn default() -> KycSession
fn default() -> KycSession
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KycSession
impl<'de> Deserialize<'de> for KycSession
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 KycSession
impl PartialEq for KycSession
Source§impl Serialize for KycSession
impl Serialize for KycSession
impl StructuralPartialEq for KycSession
Auto Trait Implementations§
impl Freeze for KycSession
impl RefUnwindSafe for KycSession
impl Send for KycSession
impl Sync for KycSession
impl Unpin for KycSession
impl UnsafeUnpin for KycSession
impl UnwindSafe for KycSession
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