pub struct OutboundEdit {
pub chat: String,
pub message_id: i64,
pub text: String,
}Expand description
A message the bot edited.
Fields§
§chat: StringChat/channel id.
message_id: i64Edited message.
text: StringNew text.
Trait Implementations§
Source§impl Clone for OutboundEdit
impl Clone for OutboundEdit
Source§fn clone(&self) -> OutboundEdit
fn clone(&self) -> OutboundEdit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OutboundEdit
impl Debug for OutboundEdit
Source§impl<'de> Deserialize<'de> for OutboundEdit
impl<'de> Deserialize<'de> for OutboundEdit
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
Source§impl PartialEq for OutboundEdit
impl PartialEq for OutboundEdit
Source§impl Serialize for OutboundEdit
impl Serialize for OutboundEdit
impl StructuralPartialEq for OutboundEdit
Auto Trait Implementations§
impl Freeze for OutboundEdit
impl RefUnwindSafe for OutboundEdit
impl Send for OutboundEdit
impl Sync for OutboundEdit
impl Unpin for OutboundEdit
impl UnsafeUnpin for OutboundEdit
impl UnwindSafe for OutboundEdit
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