#[non_exhaustive]pub struct GetReferenceOutputBuilder { /* private fields */ }
Expand description
A builder for GetReferenceOutput
.
Implementations§
source§impl GetReferenceOutputBuilder
impl GetReferenceOutputBuilder
sourcepub fn payload(self, input: ByteStream) -> Self
pub fn payload(self, input: ByteStream) -> Self
The reference file payload.
sourcepub fn set_payload(self, input: Option<ByteStream>) -> Self
pub fn set_payload(self, input: Option<ByteStream>) -> Self
The reference file payload.
sourcepub fn get_payload(&self) -> &Option<ByteStream>
pub fn get_payload(&self) -> &Option<ByteStream>
The reference file payload.
sourcepub fn build(self) -> GetReferenceOutput
pub fn build(self) -> GetReferenceOutput
Consumes the builder and constructs a GetReferenceOutput
.
Trait Implementations§
source§impl Debug for GetReferenceOutputBuilder
impl Debug for GetReferenceOutputBuilder
source§impl Default for GetReferenceOutputBuilder
impl Default for GetReferenceOutputBuilder
source§fn default() -> GetReferenceOutputBuilder
fn default() -> GetReferenceOutputBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for GetReferenceOutputBuilder
impl !RefUnwindSafe for GetReferenceOutputBuilder
impl Send for GetReferenceOutputBuilder
impl Sync for GetReferenceOutputBuilder
impl Unpin for GetReferenceOutputBuilder
impl !UnwindSafe for GetReferenceOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.