[][src]Struct google_safebrowsing4::Constraints

pub struct Constraints {
    pub supported_compressions: Option<Vec<String>>,
    pub language: Option<String>,
    pub max_database_entries: Option<i32>,
    pub region: Option<String>,
    pub device_location: Option<String>,
    pub max_update_entries: Option<i32>,
}

The constraints for this update.

This type is not used in any activity, and only used as part of another schema.

Fields

supported_compressions: Option<Vec<String>>

The compression types supported by the client.

language: Option<String>

Requests the lists for a specific language. Expects ISO 639 alpha-2 format.

max_database_entries: Option<i32>

Sets the maximum number of entries that the client is willing to have in the local database. This should be a power of 2 between 210 and 220. If zero, no database size limit is set.

region: Option<String>

Requests the list for a specific geographic location. If not set the server may pick that value based on the user's IP address. Expects ISO 3166-1 alpha-2 format.

device_location: Option<String>

A client's physical location, expressed as a ISO 31166-1 alpha-2 region code.

max_update_entries: Option<i32>

The maximum size in number of entries. The update will not contain more entries than this value. This should be a power of 2 between 210 and 220. If zero, no update size limit is set.

Trait Implementations

impl Part for Constraints[src]

impl Clone for Constraints[src]

impl Default for Constraints[src]

impl Debug for Constraints[src]

impl Serialize for Constraints[src]

impl<'de> Deserialize<'de> for Constraints[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]