pub struct SendMessageDraft {
pub chat_id: ChatId,
pub draft_id: u32,
pub text: String,
pub message_thread_id: Option<ThreadId>,
pub parse_mode: Option<ParseMode>,
pub entities: Option<Vec<MessageEntity>>,
}Expand description
Use this method to stream a partial message to a user while the message is being generated; supported only for bots with forum topic mode enabled. Returns true on success.
Fields§
§chat_id: ChatIdUnique identifier for the target private chat
draft_id: u32Unique identifier of the message draft; must be non-zero. Changes of drafts with the same identifier are animated
text: StringText of the message to be sent, 1-4096 characters after entities parsing
message_thread_id: Option<ThreadId>Unique identifier for the target message thread
parse_mode: Option<ParseMode>Mode for parsing entities in the message text. See formatting options for more details.
entities: Option<Vec<MessageEntity>>List of special entities that appear in message text, which can be specified instead of parse_mode
Implementations§
Trait Implementations§
Source§impl Clone for SendMessageDraft
impl Clone for SendMessageDraft
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SendMessageDraft
impl Debug for SendMessageDraft
Source§impl Hash for SendMessageDraft
impl Hash for SendMessageDraft
Source§impl PartialEq for SendMessageDraft
impl PartialEq for SendMessageDraft
Source§impl Payload for SendMessageDraft
impl Payload for SendMessageDraft
Source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates with
big timeout), the minimum timeout that should be used.Source§impl Serialize for SendMessageDraft
impl Serialize for SendMessageDraft
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SendMessageDraft
impl StructuralPartialEq for SendMessageDraft
Auto Trait Implementations§
impl Freeze for SendMessageDraft
impl RefUnwindSafe for SendMessageDraft
impl Send for SendMessageDraft
impl Sync for SendMessageDraft
impl Unpin for SendMessageDraft
impl UnwindSafe for SendMessageDraft
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Erasable for T
impl<T> Erasable for T
Source§impl<P> HasPayload for Pwhere
P: Payload,
impl<P> HasPayload for Pwhere
P: Payload,
Source§fn payload_mut(&mut self) -> &mut <P as HasPayload>::Payload
fn payload_mut(&mut self) -> &mut <P as HasPayload>::Payload
Gain mutable access to the underlying payload.
Source§fn payload_ref(&self) -> &<P as HasPayload>::Payload
fn payload_ref(&self) -> &<P as HasPayload>::Payload
Gain immutable access to the underlying payload.
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<P> SendMessageDraftSetters for Pwhere
P: HasPayload<Payload = SendMessageDraft>,
impl<P> SendMessageDraftSetters for Pwhere
P: HasPayload<Payload = SendMessageDraft>,
Source§fn message_thread_id(self, value: ThreadId) -> Self
fn message_thread_id(self, value: ThreadId) -> Self
Setter for
message_thread_id field.Source§fn parse_mode(self, value: ParseMode) -> Self
fn parse_mode(self, value: ParseMode) -> Self
Setter for
parse_mode field.