[][src]Struct gcp_client::google::storage::v1::ObjectChecksums

pub struct ObjectChecksums {
    pub crc32c: Option<u32>,
    pub md5_hash: String,
}

Message used for storing full (not subrange) object checksums.

Fields

crc32c: Option<u32>

CRC32C digest of the object data. Computed by the GCS service for all written objects, and validated by the GCS service against client-supplied values if present in an InsertObjectRequest.

md5_hash: String

Hex-encoded MD5 hash of the object data (hexdigest). Whether/how this checksum is provided and validated is service-dependent.

Trait Implementations

impl Clone for ObjectChecksums[src]

impl Debug for ObjectChecksums[src]

impl Default for ObjectChecksums[src]

impl Message for ObjectChecksums[src]

impl PartialEq<ObjectChecksums> for ObjectChecksums[src]

impl StructuralPartialEq for ObjectChecksums[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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 = 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]