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

pub enum Action {
    Typing,
    UploadPhoto,
    RecordVideo,
    UploadVideo,
    RecordAudio,
    UploadAudio,
    UploadDocument,
    FindLocation,
    RecordVideoNote,
    UploadVideoNote,
}

Represents possible chat actions.

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]

Checks if self is Typing.

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

Checks if self is UploadPhoto.

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

Checks if self is RecordVideo.

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

Checks if self is UploadVideo.

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

Checks if self is RecordAudio.

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

Checks if self is UploadAudio.

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

Checks if self is UploadDocument.

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

Checks if self is FindLocation.

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

Checks if self is RecordVideoNote.

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

Checks if self is UploadVideoNote.

Trait Implementations

impl PartialEq<Action> for Action[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Clone for Action[src]

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

Performs copy-assignment from source. Read more

impl Eq for Action[src]

impl Copy for Action[src]

impl Debug for Action[src]

impl Hash for Action[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Serialize for Action[src]

Auto Trait Implementations

impl Send for Action

impl Unpin for Action

impl Sync for Action

impl UnwindSafe for Action

impl RefUnwindSafe for Action

Blanket Implementations

impl<T> From<T> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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