[][src]Struct google_safebrowsing4::ThreatEntrySet

pub struct ThreatEntrySet {
    pub compression_type: Option<String>,
    pub raw_indices: Option<RawIndices>,
    pub raw_hashes: Option<RawHashes>,
    pub rice_hashes: Option<RiceDeltaEncoding>,
    pub rice_indices: Option<RiceDeltaEncoding>,
}

A set of threats that should be added or removed from a client's local database.

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

Fields

compression_type: Option<String>

The compression type for the entries in this set.

raw_indices: Option<RawIndices>

The raw removal indices for a local list.

raw_hashes: Option<RawHashes>

The raw SHA256-formatted entries.

rice_hashes: Option<RiceDeltaEncoding>

The encoded 4-byte prefixes of SHA256-formatted entries, using a Golomb-Rice encoding. The hashes are converted to uint32, sorted in ascending order, then delta encoded and stored as encoded_data.

rice_indices: Option<RiceDeltaEncoding>

The encoded local, lexicographically-sorted list indices, using a Golomb-Rice encoding. Used for sending compressed removal indices. The removal indices (uint32) are sorted in ascending order, then delta encoded and stored as encoded_data.

Trait Implementations

impl Part for ThreatEntrySet[src]

impl Default for ThreatEntrySet[src]

impl Clone for ThreatEntrySet[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ThreatEntrySet[src]

impl Serialize for ThreatEntrySet[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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