Struct cloud_storage::object::ComposeRequest
source · [−]pub struct ComposeRequest {
pub kind: String,
pub source_objects: Vec<SourceObject>,
pub destination: Option<Object>,
}
Expand description
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
sourceimpl Debug for ComposeRequest
impl Debug for ComposeRequest
sourceimpl PartialEq<ComposeRequest> for ComposeRequest
impl PartialEq<ComposeRequest> for ComposeRequest
sourcefn eq(&self, other: &ComposeRequest) -> bool
fn eq(&self, other: &ComposeRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ComposeRequest) -> bool
fn ne(&self, other: &ComposeRequest) -> bool
This method tests for !=
.
sourceimpl Serialize for ComposeRequest
impl Serialize for ComposeRequest
impl StructuralPartialEq for ComposeRequest
Auto Trait Implementations
impl RefUnwindSafe for ComposeRequest
impl Send for ComposeRequest
impl Sync for ComposeRequest
impl Unpin for ComposeRequest
impl UnwindSafe for ComposeRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more