#[non_exhaustive]pub struct ImportInstanceOutputBuilder { /* private fields */ }
Expand description
A builder for ImportInstanceOutput
.
Implementations§
source§impl ImportInstanceOutputBuilder
impl ImportInstanceOutputBuilder
sourcepub fn conversion_task(self, input: ConversionTask) -> Self
pub fn conversion_task(self, input: ConversionTask) -> Self
Information about the conversion task.
sourcepub fn set_conversion_task(self, input: Option<ConversionTask>) -> Self
pub fn set_conversion_task(self, input: Option<ConversionTask>) -> Self
Information about the conversion task.
sourcepub fn get_conversion_task(&self) -> &Option<ConversionTask>
pub fn get_conversion_task(&self) -> &Option<ConversionTask>
Information about the conversion task.
sourcepub fn build(self) -> ImportInstanceOutput
pub fn build(self) -> ImportInstanceOutput
Consumes the builder and constructs a ImportInstanceOutput
.
Trait Implementations§
source§impl Clone for ImportInstanceOutputBuilder
impl Clone for ImportInstanceOutputBuilder
source§fn clone(&self) -> ImportInstanceOutputBuilder
fn clone(&self) -> ImportInstanceOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ImportInstanceOutputBuilder
impl Debug for ImportInstanceOutputBuilder
source§impl Default for ImportInstanceOutputBuilder
impl Default for ImportInstanceOutputBuilder
source§fn default() -> ImportInstanceOutputBuilder
fn default() -> ImportInstanceOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ImportInstanceOutputBuilder
impl PartialEq for ImportInstanceOutputBuilder
source§fn eq(&self, other: &ImportInstanceOutputBuilder) -> bool
fn eq(&self, other: &ImportInstanceOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImportInstanceOutputBuilder
Auto Trait Implementations§
impl Freeze for ImportInstanceOutputBuilder
impl RefUnwindSafe for ImportInstanceOutputBuilder
impl Send for ImportInstanceOutputBuilder
impl Sync for ImportInstanceOutputBuilder
impl Unpin for ImportInstanceOutputBuilder
impl UnwindSafe for ImportInstanceOutputBuilder
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.