[−][src]Struct tbot::contexts::Text
The context for text
handlers.
Fields (Non-exhaustive)
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bot: Arc<Bot>
A bot for calling API without information inference.
message_id: Id
ID of the message.
from: Option<User>
The author of the message.
date: i64
The timestamp of the message.
chat: Chat
The chat to which the message was sent.
reply_to: Option<Message>
The replied message.
The author's signature, if enabled for the channel.
forward: Option<Forward>
The origin of the message if it's a forward.
reply_markup: Option<Keyboard>
The inline keyboard attached to the message.
via_bot: Option<User>
The bot via which the message was sent.
text: Text
The text of the message.
Trait Implementations
impl AnyText for Text
[src]
impl Clone for Text
[src]
impl Context for Text
[src]
impl Debug for Text
[src]
impl Forward for Text
[src]
impl Forwardable for Text
[src]
fn forward_to<'a>(
&'a self,
chat_id: impl ImplicitChatId<'a>
) -> ForwardMessage<'a>
[src]
&'a self,
chat_id: impl ImplicitChatId<'a>
) -> ForwardMessage<'a>
impl MediaMessage for Text
[src]
#[must_use]fn reply_to(&self) -> Option<&Message>
[src]
#[must_use]fn author_signature(&self) -> Option<&str>
[src]
#[must_use]fn reply_markup(&self) -> Option<&Keyboard>
[src]
#[must_use]fn via_bot(&self) -> Option<&User>
[src]
impl Message for Text
[src]
#[must_use]fn message_id(&self) -> Id
[src]
#[must_use]fn from(&self) -> Option<&User>
[src]
#[must_use]fn date(&self) -> i64
[src]
#[must_use]fn chat(&self) -> &Chat
[src]
impl Pinnable for Text
[src]
fn pin_this_message(&self) -> PinChatMessage<'_>
[src]
impl Text for Text
[src]
Auto Trait Implementations
impl !RefUnwindSafe for Text
impl Send for Text
impl Sync for Text
impl Unpin for Text
impl !UnwindSafe for Text
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> WithSubscriber for T
[src]
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,