pub struct UpdateChatBusinessBotManageBar {
pub chat_id: i64,
pub business_bot_manage_bar: Option<BusinessBotManageBar>,
}
Expand description
The bar for managing business bot was changed in a chat
Fields§
§chat_id: i64
Chat identifier
business_bot_manage_bar: Option<BusinessBotManageBar>
The new value of the business bot manage bar; may be null
Trait Implementations§
Source§impl Clone for UpdateChatBusinessBotManageBar
impl Clone for UpdateChatBusinessBotManageBar
Source§fn clone(&self) -> UpdateChatBusinessBotManageBar
fn clone(&self) -> UpdateChatBusinessBotManageBar
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 Default for UpdateChatBusinessBotManageBar
impl Default for UpdateChatBusinessBotManageBar
Source§fn default() -> UpdateChatBusinessBotManageBar
fn default() -> UpdateChatBusinessBotManageBar
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChatBusinessBotManageBar
impl<'de> Deserialize<'de> for UpdateChatBusinessBotManageBar
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 UpdateChatBusinessBotManageBar
impl PartialEq for UpdateChatBusinessBotManageBar
Source§fn eq(&self, other: &UpdateChatBusinessBotManageBar) -> bool
fn eq(&self, other: &UpdateChatBusinessBotManageBar) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateChatBusinessBotManageBar
Auto Trait Implementations§
impl Freeze for UpdateChatBusinessBotManageBar
impl RefUnwindSafe for UpdateChatBusinessBotManageBar
impl Send for UpdateChatBusinessBotManageBar
impl Sync for UpdateChatBusinessBotManageBar
impl Unpin for UpdateChatBusinessBotManageBar
impl UnwindSafe for UpdateChatBusinessBotManageBar
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