pub struct BlobProperties {
Show 35 fields pub creation_time: OffsetDateTime, pub last_modified: OffsetDateTime, pub last_access_time: Option<OffsetDateTime>, pub etag: Etag, pub content_length: u64, pub content_type: String, pub content_encoding: Option<String>, pub content_language: Option<String>, pub content_disposition: Option<String>, pub content_md5: Option<ConsistencyMD5>, pub content_crc64: Option<ConsistencyCRC64>, pub cache_control: Option<String>, pub blob_sequence_number: Option<u64>, pub blob_type: BlobType, pub access_tier: Option<AccessTier>, pub access_tier_change_time: Option<OffsetDateTime>, pub lease_status: LeaseStatus, pub lease_state: LeaseState, pub lease_duration: Option<LeaseDuration>, pub copy_id: Option<CopyId>, pub copy_status: Option<CopyStatus>, pub copy_source: Option<String>, pub copy_progress: Option<CopyProgress>, pub copy_completion_time: Option<OffsetDateTime>, pub copy_status_description: Option<String>, pub server_encrypted: bool, pub customer_provided_key_sha256: Option<String>, pub encryption_scope: Option<String>, pub incremental_copy: Option<bool>, pub access_tier_inferred: Option<bool>, pub deleted_time: Option<OffsetDateTime>, pub remaining_retention_days: Option<u32>, pub tag_count: Option<u32>, pub rehydrate_priority: Option<RehydratePriority>, pub expiry_time: Option<OffsetDateTime>, /* private fields */
}

Fields

creation_time: OffsetDateTimelast_modified: OffsetDateTimelast_access_time: Option<OffsetDateTime>etag: Etagcontent_length: u64content_type: Stringcontent_encoding: Option<String>content_language: Option<String>content_disposition: Option<String>content_md5: Option<ConsistencyMD5>content_crc64: Option<ConsistencyCRC64>cache_control: Option<String>blob_sequence_number: Option<u64>blob_type: BlobTypeaccess_tier: Option<AccessTier>access_tier_change_time: Option<OffsetDateTime>lease_status: LeaseStatuslease_state: LeaseStatelease_duration: Option<LeaseDuration>copy_id: Option<CopyId>copy_status: Option<CopyStatus>copy_source: Option<String>copy_progress: Option<CopyProgress>copy_completion_time: Option<OffsetDateTime>copy_status_description: Option<String>server_encrypted: boolcustomer_provided_key_sha256: Option<String>encryption_scope: Option<String>incremental_copy: Option<bool>access_tier_inferred: Option<bool>deleted_time: Option<OffsetDateTime>remaining_retention_days: Option<u32>tag_count: Option<u32>rehydrate_priority: Option<RehydratePriority>expiry_time: Option<OffsetDateTime>

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more