Struct teloxide_core::payloads::EditGeneralForumTopic
source · pub struct EditGeneralForumTopic {
pub chat_id: Recipient,
pub name: String,
}
Expand description
Use this method to edit the name of the ‘General’ topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have can_manage_topics administrator rights. Returns True on success.
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
)
name: String
New topic name, 1-128 characters
Implementations§
Trait Implementations§
source§impl Clone for EditGeneralForumTopic
impl Clone for EditGeneralForumTopic
source§impl Debug for EditGeneralForumTopic
impl Debug for EditGeneralForumTopic
source§impl Hash for EditGeneralForumTopic
impl Hash for EditGeneralForumTopic
source§impl PartialEq<EditGeneralForumTopic> for EditGeneralForumTopic
impl PartialEq<EditGeneralForumTopic> for EditGeneralForumTopic
source§fn eq(&self, other: &EditGeneralForumTopic) -> bool
fn eq(&self, other: &EditGeneralForumTopic) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for EditGeneralForumTopic
impl Payload for EditGeneralForumTopic
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for EditGeneralForumTopic
impl Serialize for EditGeneralForumTopic
impl Eq for EditGeneralForumTopic
impl StructuralEq for EditGeneralForumTopic
impl StructuralPartialEq for EditGeneralForumTopic
Auto Trait Implementations§
impl RefUnwindSafe for EditGeneralForumTopic
impl Send for EditGeneralForumTopic
impl Sync for EditGeneralForumTopic
impl Unpin for EditGeneralForumTopic
impl UnwindSafe for EditGeneralForumTopic
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.