pub struct AuthStateHandlerProxy(/* private fields */);
Expand description
AuthStateHandlerProxy
implements AuthStateHandlerProxy in a way that allows to proxy all auth methods to particular clients.
Implementations§
Source§impl AuthStateHandlerProxy
impl AuthStateHandlerProxy
pub fn new() -> Self
pub fn new_with_encryption_key(key: String) -> Self
Trait Implementations§
Source§impl AuthStateHandler for AuthStateHandlerProxy
impl AuthStateHandler for AuthStateHandlerProxy
Source§fn handle_other_device_confirmation<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_device_confirmation: &'life1 AuthorizationStateWaitOtherDeviceConfirmation,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_other_device_confirmation<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_device_confirmation: &'life1 AuthorizationStateWaitOtherDeviceConfirmation,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Interacts with provided link
Source§fn handle_wait_code<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_code: &'life1 AuthorizationStateWaitCode,
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_wait_code<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_code: &'life1 AuthorizationStateWaitCode,
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns wait code
Source§fn handle_encryption_key<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_encryption_key: &'life1 AuthorizationStateWaitEncryptionKey,
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_encryption_key<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_encryption_key: &'life1 AuthorizationStateWaitEncryptionKey,
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns database encryption key
Source§fn handle_wait_password<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_password: &'life1 AuthorizationStateWaitPassword,
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_wait_password<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_password: &'life1 AuthorizationStateWaitPassword,
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns password
Source§fn handle_wait_client_identifier<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_phone_number: &'life1 AuthorizationStateWaitPhoneNumber,
) -> Pin<Box<dyn Future<Output = ClientIdentifier> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_wait_client_identifier<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_phone_number: &'life1 AuthorizationStateWaitPhoneNumber,
) -> Pin<Box<dyn Future<Output = ClientIdentifier> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns ClientIdentifier
Source§fn handle_wait_registration<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_registration: &'life1 AuthorizationStateWaitRegistration,
) -> Pin<Box<dyn Future<Output = (String, String)> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_wait_registration<'life0, 'life1, 'async_trait>(
&'life0 self,
client: Box<dyn ClientAuthStateHandler>,
wait_registration: &'life1 AuthorizationStateWaitRegistration,
) -> Pin<Box<dyn Future<Output = (String, String)> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns first_name and second_name
Source§impl Clone for AuthStateHandlerProxy
impl Clone for AuthStateHandlerProxy
Source§fn clone(&self) -> AuthStateHandlerProxy
fn clone(&self) -> AuthStateHandlerProxy
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 moreSource§impl Debug for AuthStateHandlerProxy
impl Debug for AuthStateHandlerProxy
Auto Trait Implementations§
impl Freeze for AuthStateHandlerProxy
impl RefUnwindSafe for AuthStateHandlerProxy
impl Send for AuthStateHandlerProxy
impl Sync for AuthStateHandlerProxy
impl Unpin for AuthStateHandlerProxy
impl UnwindSafe for AuthStateHandlerProxy
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