Enum gsbrs::Status [] [src]

pub enum Status {
    Ok,
    Phishing,
    Malware,
    Unwanted,
}

Status represents each list a URL may be found in as well as a value, The lookup_all API will return 'Ok' when the url is not found in any list, to maintain ordering.

Variants

URL was not found in bulk lookup

Url was found in Phishing list

Url was found in Malware list

Url was found in Unwanted list

Trait Implementations

impl Debug for Status
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Status
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Status
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Status

impl Sync for Status