Struct cloud_storage::object::ComposeRequest[][src]

pub struct ComposeRequest {
    pub kind: String,
    pub source_objects: Vec<SourceObject>,
    pub destination: Option<Object>,
}

The request that is supplied to perform Object::compose.

Fields

kind: String

The kind of item this is. Will always be storage#composeRequest.

source_objects: Vec<SourceObject>

The list of source objects that will be concatenated into a single object.

destination: Option<Object>

Properties of the resulting object.

Trait Implementations

impl Debug for ComposeRequest[src]

impl PartialEq<ComposeRequest> for ComposeRequest[src]

impl Serialize for ComposeRequest[src]

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