pub struct CloseForumTopic {
pub chat_id: ChatId,
pub message_thread_id: i64,
}Expand description
Use this method to close an open topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
Fields§
§chat_id: ChatIdUnique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
message_thread_id: i64Unique identifier for the target message thread of the forum topic
Implementations§
Trait Implementations§
Source§impl Clone for CloseForumTopic
impl Clone for CloseForumTopic
Source§fn clone(&self) -> CloseForumTopic
fn clone(&self) -> CloseForumTopic
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 CloseForumTopic
impl Debug for CloseForumTopic
Source§impl<'de> Deserialize<'de> for CloseForumTopic
impl<'de> Deserialize<'de> for CloseForumTopic
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 Serialize for CloseForumTopic
impl Serialize for CloseForumTopic
Auto Trait Implementations§
impl Freeze for CloseForumTopic
impl RefUnwindSafe for CloseForumTopic
impl Send for CloseForumTopic
impl Sync for CloseForumTopic
impl Unpin for CloseForumTopic
impl UnwindSafe for CloseForumTopic
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