pub struct GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse {
pub claims: Option<Vec<GoogleFactcheckingFactchecktoolsV1alpha1Claim>>,
pub next_page_token: Option<String>,
}Expand description
Response from searching fact-checked claims.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- search claims (response)
Fields§
§claims: Option<Vec<GoogleFactcheckingFactchecktoolsV1alpha1Claim>>The list of claims and all of their associated information.
next_page_token: Option<String>The next pagination token in the Search response. It should be used as the page_token for the following request. An empty value means no more results.
Trait Implementations§
Source§impl Clone for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl Clone for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
Source§fn clone(
&self,
) -> GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
fn clone( &self, ) -> GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
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 GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl Default for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
Source§fn default() -> GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
fn default() -> GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl<'de> Deserialize<'de> for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
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 ResponseResult for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
Auto Trait Implementations§
impl Freeze for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl RefUnwindSafe for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl Send for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl Sync for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl Unpin for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
impl UnwindSafe for GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
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