Struct google_safebrowsing4::MetadataEntry[][src]

pub struct MetadataEntry {
    pub key: Option<String>,
    pub value: Option<String>,
}

A single metadata entry.

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

Fields

The metadata entry key. For JSON requests, the key is base64-encoded.

The metadata entry value. For JSON requests, the value is base64-encoded.

Trait Implementations

impl Default for MetadataEntry
[src]

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

impl Clone for MetadataEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MetadataEntry
[src]

Formats the value using the given formatter. Read more

impl Part for MetadataEntry
[src]

Auto Trait Implementations