#[non_exhaustive]pub struct SourceDatabaseMetadataBuilder { /* private fields */ }
Expand description
A builder for SourceDatabaseMetadata
.
Implementations§
source§impl SourceDatabaseMetadataBuilder
impl SourceDatabaseMetadataBuilder
sourcepub fn type(self, input: SourceDatabase) -> Self
pub fn type(self, input: SourceDatabase) -> Self
The type of the source database metadata.
This field is required.sourcepub fn set_type(self, input: Option<SourceDatabase>) -> Self
pub fn set_type(self, input: Option<SourceDatabase>) -> Self
The type of the source database metadata.
sourcepub fn get_type(&self) -> &Option<SourceDatabase>
pub fn get_type(&self) -> &Option<SourceDatabase>
The type of the source database metadata.
sourcepub fn capture_tool(self, input: CaptureTool) -> Self
pub fn capture_tool(self, input: CaptureTool) -> Self
The capture tool of the source database metadata.
This field is required.sourcepub fn set_capture_tool(self, input: Option<CaptureTool>) -> Self
pub fn set_capture_tool(self, input: Option<CaptureTool>) -> Self
The capture tool of the source database metadata.
sourcepub fn get_capture_tool(&self) -> &Option<CaptureTool>
pub fn get_capture_tool(&self) -> &Option<CaptureTool>
The capture tool of the source database metadata.
sourcepub fn build(self) -> Result<SourceDatabaseMetadata, BuildError>
pub fn build(self) -> Result<SourceDatabaseMetadata, BuildError>
Consumes the builder and constructs a SourceDatabaseMetadata
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for SourceDatabaseMetadataBuilder
impl Clone for SourceDatabaseMetadataBuilder
source§fn clone(&self) -> SourceDatabaseMetadataBuilder
fn clone(&self) -> SourceDatabaseMetadataBuilder
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 Default for SourceDatabaseMetadataBuilder
impl Default for SourceDatabaseMetadataBuilder
source§fn default() -> SourceDatabaseMetadataBuilder
fn default() -> SourceDatabaseMetadataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SourceDatabaseMetadataBuilder
impl PartialEq for SourceDatabaseMetadataBuilder
source§fn eq(&self, other: &SourceDatabaseMetadataBuilder) -> bool
fn eq(&self, other: &SourceDatabaseMetadataBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SourceDatabaseMetadataBuilder
Auto Trait Implementations§
impl Freeze for SourceDatabaseMetadataBuilder
impl RefUnwindSafe for SourceDatabaseMetadataBuilder
impl Send for SourceDatabaseMetadataBuilder
impl Sync for SourceDatabaseMetadataBuilder
impl Unpin for SourceDatabaseMetadataBuilder
impl UnwindSafe for SourceDatabaseMetadataBuilder
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.