pub struct SendMessageOutput {
pub chat_id: String,
pub pending_message_id: String,
}Expand description
Output from sending a message
Fields§
§chat_id: StringChat ID where message was sent
pending_message_id: StringPending message ID
Trait Implementations§
Source§impl Clone for SendMessageOutput
impl Clone for SendMessageOutput
Source§fn clone(&self) -> SendMessageOutput
fn clone(&self) -> SendMessageOutput
Returns a duplicate of the value. Read more
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 SendMessageOutput
impl Debug for SendMessageOutput
Source§impl<'de> Deserialize<'de> for SendMessageOutput
impl<'de> Deserialize<'de> for SendMessageOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SendMessageOutput
impl RefUnwindSafe for SendMessageOutput
impl Send for SendMessageOutput
impl Sync for SendMessageOutput
impl Unpin for SendMessageOutput
impl UnwindSafe for SendMessageOutput
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