[][src]Enum tbot::types::chat::Action

#[non_exhaustive]#[must_use]pub enum Action {
    Typing,
    UploadPhoto,
    RecordVideo,
    UploadVideo,
    RecordAudio,
    UploadAudio,
    UploadDocument,
    FindLocation,
    RecordVideoNote,
    UploadVideoNote,
}

Represents possible chat actions.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Typing

About to send a text message.

UploadPhoto

About to send a photo.

RecordVideo

About to send a generated video.

UploadVideo

About to send a video.

RecordAudio

About to send a generated audio.

UploadAudio

About to send an audio.

UploadDocument

About to send a document.

FindLocation

About to send a location.

RecordVideoNote

About to send a generated video note.

UploadVideoNote

About to send a video note.

Methods

impl Action[src]

pub fn is_typing(&self) -> bool[src]

Returns true if self is of variant Typing.

pub fn is_upload_photo(&self) -> bool[src]

Returns true if self is of variant UploadPhoto.

pub fn is_record_video(&self) -> bool[src]

Returns true if self is of variant RecordVideo.

pub fn is_upload_video(&self) -> bool[src]

Returns true if self is of variant UploadVideo.

pub fn is_record_audio(&self) -> bool[src]

Returns true if self is of variant RecordAudio.

pub fn is_upload_audio(&self) -> bool[src]

Returns true if self is of variant UploadAudio.

pub fn is_upload_document(&self) -> bool[src]

Returns true if self is of variant UploadDocument.

pub fn is_find_location(&self) -> bool[src]

Returns true if self is of variant FindLocation.

pub fn is_record_video_note(&self) -> bool[src]

Returns true if self is of variant RecordVideoNote.

pub fn is_upload_video_note(&self) -> bool[src]

Returns true if self is of variant UploadVideoNote.

Trait Implementations

impl Clone for Action[src]

impl Copy for Action[src]

impl Debug for Action[src]

impl Eq for Action[src]

impl Hash for Action[src]

impl PartialEq<Action> for Action[src]

impl Serialize for Action[src]

impl StructuralEq for Action[src]

impl StructuralPartialEq for Action[src]

Auto Trait Implementations

impl RefUnwindSafe for Action

impl Send for Action

impl Sync for Action

impl Unpin for Action

impl UnwindSafe for Action

Blanket Implementations

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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> WithSubscriber for T[src]