[][src]Struct tbot::contexts::Update

pub struct Update<C> {
    pub bot: Arc<Bot<C>>,
    pub update_id: Id,
}

The context for before_update and after_update handlers.

This context does not provide the contents of the update. Use dedicated update handlers instead.

Fields

bot: Arc<Bot<C>>

A bot for calling API without information inference.

update_id: Id

The ID of the update.

Trait Implementations

impl<C: Clone> Clone for Update<C>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<C: Debug> Debug for Update<C>[src]

Auto Trait Implementations

impl<C> Send for Update<C> where
    C: Send + Sync

impl<C> Unpin for Update<C>

impl<C> Sync for Update<C> where
    C: Send + Sync

impl<C> !UnwindSafe for Update<C>

impl<C> !RefUnwindSafe for Update<C>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T