pub struct FreeTierProcessHandle { /* private fields */ }
Expand description
Represents ongoing process of granting Free Foundation Storage and allows to run email verifications
via verify_email
method.
Implementations§
source§impl FreeTierProcessHandle
impl FreeTierProcessHandle
sourcepub fn verify_email(
&self,
verification_token: String
) -> Result<StorageTemplate, FsaError>
pub fn verify_email( &self, verification_token: String ) -> Result<StorageTemplate, FsaError>
Verifies user’s email. After successful verification it returns Foundation Storage Template (which is also saved in LSS) and saves information in CatLib that Foundation storage has been granted.
Trait Implementations§
source§impl Clone for FreeTierProcessHandle
impl Clone for FreeTierProcessHandle
source§fn clone(&self) -> FreeTierProcessHandle
fn clone(&self) -> FreeTierProcessHandle
Returns a copy 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 moreAuto Trait Implementations§
impl !RefUnwindSafe for FreeTierProcessHandle
impl !Send for FreeTierProcessHandle
impl !Sync for FreeTierProcessHandle
impl Unpin for FreeTierProcessHandle
impl !UnwindSafe for FreeTierProcessHandle
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