pub struct FactCheck {
pub need_check: bool,
pub country: Option<String>,
pub text: Option<TextWithEntities>,
pub hash: i64,
}Expand description
Generated from the following TL definition:
factCheck#b89bfccf flags:# need_check:flags.0?true country:flags.1?string text:flags.1?TextWithEntities hash:long = FactCheckFields§
§need_check: bool§country: Option<String>§text: Option<TextWithEntities>§hash: i64Trait Implementations§
Source§impl Deserializable for FactCheck
impl Deserializable for FactCheck
Source§impl Identifiable for FactCheck
impl Identifiable for FactCheck
Source§const CONSTRUCTOR_ID: u32 = 3097230543
const CONSTRUCTOR_ID: u32 = 3097230543
The unique identifier for the type.
Source§impl Serializable for FactCheck
impl Serializable for FactCheck
impl StructuralPartialEq for FactCheck
Auto Trait Implementations§
impl Freeze for FactCheck
impl RefUnwindSafe for FactCheck
impl Send for FactCheck
impl Sync for FactCheck
impl Unpin for FactCheck
impl UnsafeUnpin for FactCheck
impl UnwindSafe for FactCheck
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