pub struct ModifyMessageParams {
pub thread_id: String,
pub message_id: String,
}
Fields§
§thread_id: String
The ID of the thread to which this message belongs.
message_id: String
The ID of the message to modify.
Implementations§
Trait Implementations§
Source§impl Clone for ModifyMessageParams
impl Clone for ModifyMessageParams
Source§fn clone(&self) -> ModifyMessageParams
fn clone(&self) -> ModifyMessageParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModifyMessageParams
impl Debug for ModifyMessageParams
Source§impl<'de> Deserialize<'de> for ModifyMessageParams
impl<'de> Deserialize<'de> for ModifyMessageParams
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 ModifyMessageParams
impl PartialEq for ModifyMessageParams
Source§impl Serialize for ModifyMessageParams
impl Serialize for ModifyMessageParams
impl StructuralPartialEq for ModifyMessageParams
Auto Trait Implementations§
impl Freeze for ModifyMessageParams
impl RefUnwindSafe for ModifyMessageParams
impl Send for ModifyMessageParams
impl Sync for ModifyMessageParams
impl Unpin for ModifyMessageParams
impl UnwindSafe for ModifyMessageParams
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