pub struct UpdateChatActionBar {
pub chat_id: i64,
pub action_bar: Option<ChatActionBar>,
}
Expand description
The chat action bar was changed
Fields§
§chat_id: i64
Chat identifier
action_bar: Option<ChatActionBar>
The new value of the action bar; may be null
Trait Implementations§
Source§impl Clone for UpdateChatActionBar
impl Clone for UpdateChatActionBar
Source§fn clone(&self) -> UpdateChatActionBar
fn clone(&self) -> UpdateChatActionBar
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 UpdateChatActionBar
impl Debug for UpdateChatActionBar
Source§impl Default for UpdateChatActionBar
impl Default for UpdateChatActionBar
Source§fn default() -> UpdateChatActionBar
fn default() -> UpdateChatActionBar
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChatActionBar
impl<'de> Deserialize<'de> for UpdateChatActionBar
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 UpdateChatActionBar
impl PartialEq for UpdateChatActionBar
Source§impl Serialize for UpdateChatActionBar
impl Serialize for UpdateChatActionBar
impl StructuralPartialEq for UpdateChatActionBar
Auto Trait Implementations§
impl Freeze for UpdateChatActionBar
impl RefUnwindSafe for UpdateChatActionBar
impl Send for UpdateChatActionBar
impl Sync for UpdateChatActionBar
impl Unpin for UpdateChatActionBar
impl UnwindSafe for UpdateChatActionBar
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