#[non_exhaustive]pub struct MetadataConfigurationResultBuilder { /* private fields */ }Expand description
A builder for MetadataConfigurationResult.
Implementations§
Source§impl MetadataConfigurationResultBuilder
impl MetadataConfigurationResultBuilder
Sourcepub fn destination_result(self, input: DestinationResult) -> Self
pub fn destination_result(self, input: DestinationResult) -> Self
The destination settings for a metadata configuration.
This field is required.Sourcepub fn set_destination_result(self, input: Option<DestinationResult>) -> Self
pub fn set_destination_result(self, input: Option<DestinationResult>) -> Self
The destination settings for a metadata configuration.
Sourcepub fn get_destination_result(&self) -> &Option<DestinationResult>
pub fn get_destination_result(&self) -> &Option<DestinationResult>
The destination settings for a metadata configuration.
Sourcepub fn journal_table_configuration_result(
self,
input: JournalTableConfigurationResult,
) -> Self
pub fn journal_table_configuration_result( self, input: JournalTableConfigurationResult, ) -> Self
The journal table configuration for a metadata configuration.
Sourcepub fn set_journal_table_configuration_result(
self,
input: Option<JournalTableConfigurationResult>,
) -> Self
pub fn set_journal_table_configuration_result( self, input: Option<JournalTableConfigurationResult>, ) -> Self
The journal table configuration for a metadata configuration.
Sourcepub fn get_journal_table_configuration_result(
&self,
) -> &Option<JournalTableConfigurationResult>
pub fn get_journal_table_configuration_result( &self, ) -> &Option<JournalTableConfigurationResult>
The journal table configuration for a metadata configuration.
Sourcepub fn inventory_table_configuration_result(
self,
input: InventoryTableConfigurationResult,
) -> Self
pub fn inventory_table_configuration_result( self, input: InventoryTableConfigurationResult, ) -> Self
The inventory table configuration for a metadata configuration.
Sourcepub fn set_inventory_table_configuration_result(
self,
input: Option<InventoryTableConfigurationResult>,
) -> Self
pub fn set_inventory_table_configuration_result( self, input: Option<InventoryTableConfigurationResult>, ) -> Self
The inventory table configuration for a metadata configuration.
Sourcepub fn get_inventory_table_configuration_result(
&self,
) -> &Option<InventoryTableConfigurationResult>
pub fn get_inventory_table_configuration_result( &self, ) -> &Option<InventoryTableConfigurationResult>
The inventory table configuration for a metadata configuration.
Sourcepub fn build(self) -> MetadataConfigurationResult
pub fn build(self) -> MetadataConfigurationResult
Consumes the builder and constructs a MetadataConfigurationResult.
Trait Implementations§
Source§impl Clone for MetadataConfigurationResultBuilder
impl Clone for MetadataConfigurationResultBuilder
Source§fn clone(&self) -> MetadataConfigurationResultBuilder
fn clone(&self) -> MetadataConfigurationResultBuilder
Returns a duplicate 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 Default for MetadataConfigurationResultBuilder
impl Default for MetadataConfigurationResultBuilder
Source§fn default() -> MetadataConfigurationResultBuilder
fn default() -> MetadataConfigurationResultBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for MetadataConfigurationResultBuilder
impl PartialEq for MetadataConfigurationResultBuilder
Source§fn eq(&self, other: &MetadataConfigurationResultBuilder) -> bool
fn eq(&self, other: &MetadataConfigurationResultBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MetadataConfigurationResultBuilder
Auto Trait Implementations§
impl Freeze for MetadataConfigurationResultBuilder
impl RefUnwindSafe for MetadataConfigurationResultBuilder
impl Send for MetadataConfigurationResultBuilder
impl Sync for MetadataConfigurationResultBuilder
impl Unpin for MetadataConfigurationResultBuilder
impl UnwindSafe for MetadataConfigurationResultBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.