[][src]Struct cloud_storage::object::SourceObject

pub struct SourceObject {
    pub name: String,
    pub generation: Option<i64>,
    pub object_preconditions: Option<ObjectPrecondition>,
}

A SourceObject represents one of the objects that is to be composed.

Fields

name: String

The source object's name. All source objects must have the same storage class and reside in the same bucket.

generation: Option<i64>

The generation of this object to use as the source.

object_preconditions: Option<ObjectPrecondition>

Conditions that must be met for this operation to execute.

Trait Implementations

impl Debug for SourceObject[src]

impl PartialEq<SourceObject> for SourceObject[src]

impl Serialize for SourceObject[src]

impl StructuralPartialEq for SourceObject[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, 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.