pub struct WorkerBuilder<A, T>{ /* private fields */ }
Implementations§
Source§impl<A, T> WorkerBuilder<A, T>
impl<A, T> WorkerBuilder<A, T>
Sourcepub fn with_channels_send_timeout(self, timeout: f64) -> Self
pub fn with_channels_send_timeout(self, timeout: f64) -> Self
Specifies timeout which will be used during sending to tokio::sync::mpsc.
pub fn with_read_updates_timeout(self, read_updates_timeout: f64) -> Self
Sourcepub fn with_auth_state_handler<N>(
self,
auth_state_handler: N,
) -> WorkerBuilder<N, T>
pub fn with_auth_state_handler<N>( self, auth_state_handler: N, ) -> WorkerBuilder<N, T>
AuthStateHandler allows you to handle particular “auth states”, such as WaitPassword, WaitPhoneNumber and so on. See AuthorizationState.
pub fn build(self) -> Result<Worker<A, T>>
Trait Implementations§
Source§impl<A, T> Debug for WorkerBuilder<A, T>
impl<A, T> Debug for WorkerBuilder<A, T>
Source§impl Default for WorkerBuilder<ConsoleAuthStateHandler, TdJson>
impl Default for WorkerBuilder<ConsoleAuthStateHandler, TdJson>
Source§fn default() -> Self
fn default() -> Self
Provides default implementation with ConsoleAuthStateHandler
Auto Trait Implementations§
impl<A, T> Freeze for WorkerBuilder<A, T>
impl<A, T> RefUnwindSafe for WorkerBuilder<A, T>where
A: RefUnwindSafe,
T: RefUnwindSafe,
impl<A, T> Send for WorkerBuilder<A, T>
impl<A, T> Sync for WorkerBuilder<A, T>
impl<A, T> Unpin for WorkerBuilder<A, T>
impl<A, T> UnwindSafe for WorkerBuilder<A, T>where
A: UnwindSafe,
T: UnwindSafe,
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