Struct gapi_grpc::google::cloud::webrisk::v1::web_risk_service_client::WebRiskServiceClient[][src]

pub struct WebRiskServiceClient<T> { /* fields omitted */ }
[]

Web Risk API defines an interface to detect malicious URLs on your website and in client applications.

Implementations

impl WebRiskServiceClient<Channel>[src][]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src][]

Attempt to create a new client by connecting to a given endpoint.

impl<T> WebRiskServiceClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src][]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn compute_threat_list_diff(
    &mut self,
    request: impl IntoRequest<ComputeThreatListDiffRequest>
) -> Result<Response<ComputeThreatListDiffResponse>, Status>
[src][]

Gets the most recent threat list diffs. These diffs should be applied to a local database of hashes to keep it up-to-date. If the local database is empty or excessively out-of-date, a complete snapshot of the database will be returned. This Method only updates a single ThreatList at a time. To update multiple ThreatList databases, this method needs to be called once for each list.

pub async fn search_uris(
    &mut self,
    request: impl IntoRequest<SearchUrisRequest>
) -> Result<Response<SearchUrisResponse>, Status>
[src][]

This method is used to check whether a URI is on a given threatList. Multiple threatLists may be searched in a single query. The response will list all requested threatLists the URI was found to match. If the URI is not found on any of the requested ThreatList an empty response will be returned.

pub async fn search_hashes(
    &mut self,
    request: impl IntoRequest<SearchHashesRequest>
) -> Result<Response<SearchHashesResponse>, Status>
[src][]

Gets the full hashes that match the requested hash prefix. This is used after a hash prefix is looked up in a threatList and there is a match. The client side threatList only holds partial hashes so the client must query this method to determine if there is a full hash match of a threat.

pub async fn create_submission(
    &mut self,
    request: impl IntoRequest<CreateSubmissionRequest>
) -> Result<Response<Submission>, Status>
[src][]

Creates a Submission of a URI suspected of containing phishing content to be reviewed. If the result verifies the existence of malicious phishing content, the site will be added to the Google’s Social Engineering lists in order to protect users that could get exposed to this threat in the future. Only projects with CREATE_SUBMISSION_USERS visibility can use this method.

Trait Implementations

impl<T: Clone> Clone for WebRiskServiceClient<T>[src][+]

impl<T> Debug for WebRiskServiceClient<T>[src][+]

Auto Trait Implementations

impl<T> !RefUnwindSafe for WebRiskServiceClient<T>

impl<T> Send for WebRiskServiceClient<T> where
    T: Send

impl<T> Sync for WebRiskServiceClient<T> where
    T: Sync

impl<T> Unpin for WebRiskServiceClient<T> where
    T: Unpin

impl<T> !UnwindSafe for WebRiskServiceClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> From<T> for T[src][+]

impl<T> Instrument for T[src][+]

impl<T> Instrument for T[src][+]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T> IntoRequest<T> for T[src][+]

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src][+]

impl<T> WithSubscriber for T[src][+]