pub struct GoogleFactcheckingFactchecktoolsV1alpha1Claim {
pub claim_date: Option<DateTime<Utc>>,
pub claim_review: Option<Vec<GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview>>,
pub claimant: Option<String>,
pub text: Option<String>,
}Expand description
Information about the claim.
This type is not used in any activity, and only used as part of another schema.
Fields§
§claim_date: Option<DateTime<Utc>>The date that the claim was made.
claim_review: Option<Vec<GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview>>One or more reviews of this claim (namely, a fact-checking article).
claimant: Option<String>A person or organization stating the claim. For instance, “John Doe”.
text: Option<String>The claim text. For instance, “Crime has doubled in the last 2 years.”
Trait Implementations§
Source§impl Clone for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl Clone for GoogleFactcheckingFactchecktoolsV1alpha1Claim
Source§fn clone(&self) -> GoogleFactcheckingFactchecktoolsV1alpha1Claim
fn clone(&self) -> GoogleFactcheckingFactchecktoolsV1alpha1Claim
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 Default for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl Default for GoogleFactcheckingFactchecktoolsV1alpha1Claim
Source§fn default() -> GoogleFactcheckingFactchecktoolsV1alpha1Claim
fn default() -> GoogleFactcheckingFactchecktoolsV1alpha1Claim
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl<'de> Deserialize<'de> for GoogleFactcheckingFactchecktoolsV1alpha1Claim
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
impl Part for GoogleFactcheckingFactchecktoolsV1alpha1Claim
Auto Trait Implementations§
impl Freeze for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl RefUnwindSafe for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl Send for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl Sync for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl Unpin for GoogleFactcheckingFactchecktoolsV1alpha1Claim
impl UnwindSafe for GoogleFactcheckingFactchecktoolsV1alpha1Claim
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