pub struct UpdateMessageFactCheck {
pub chat_id: i64,
pub message_id: i64,
pub fact_check: FactCheck,
}Expand description
A fact-check added to a message was changed
Fields§
§chat_id: i64Chat identifier
message_id: i64Message identifier
fact_check: FactCheckThe new fact-check
Trait Implementations§
Source§impl Clone for UpdateMessageFactCheck
impl Clone for UpdateMessageFactCheck
Source§fn clone(&self) -> UpdateMessageFactCheck
fn clone(&self) -> UpdateMessageFactCheck
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 UpdateMessageFactCheck
impl Debug for UpdateMessageFactCheck
Source§impl Default for UpdateMessageFactCheck
impl Default for UpdateMessageFactCheck
Source§fn default() -> UpdateMessageFactCheck
fn default() -> UpdateMessageFactCheck
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMessageFactCheck
impl<'de> Deserialize<'de> for UpdateMessageFactCheck
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 UpdateMessageFactCheck
impl PartialEq for UpdateMessageFactCheck
Source§impl Serialize for UpdateMessageFactCheck
impl Serialize for UpdateMessageFactCheck
impl StructuralPartialEq for UpdateMessageFactCheck
Auto Trait Implementations§
impl Freeze for UpdateMessageFactCheck
impl RefUnwindSafe for UpdateMessageFactCheck
impl Send for UpdateMessageFactCheck
impl Sync for UpdateMessageFactCheck
impl Unpin for UpdateMessageFactCheck
impl UnsafeUnpin for UpdateMessageFactCheck
impl UnwindSafe for UpdateMessageFactCheck
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