Struct google_safebrowsing4::Constraints [] [src]

pub struct Constraints {
    pub max_database_entries: Option<i32>,
    pub region: Option<String>,
    pub supported_compressions: Option<Vec<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

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 2**10 and 2**20. If zero, no database size limit is set.

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.

The compression types supported by the client.

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 2**10 and 2**20. If zero, no update size limit is set.

Trait Implementations

impl Debug for Constraints
[src]

Formats the value using the given formatter.

impl Clone for Constraints
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Constraints
[src]

Returns the "default value" for a type. Read more

impl Part for Constraints
[src]