pub struct Builder<T>(/* private fields */);
Expand description
A builder for CreateConnection
Implementations§
Source§impl Builder<ConnectionDetailsStage>
impl Builder<ConnectionDetailsStage>
Sourcepub fn connection_details(
self,
connection_details: ConnectionDetails,
) -> Builder<ShouldScrapeStage>
pub fn connection_details( self, connection_details: ConnectionDetails, ) -> Builder<ShouldScrapeStage>
Sets the connection_details
field.
Source§impl Builder<ShouldScrapeStage>
impl Builder<ShouldScrapeStage>
Sourcepub fn should_scrape(self, should_scrape: bool) -> Builder<Complete>
pub fn should_scrape(self, should_scrape: bool) -> Builder<Complete>
Sets the should_scrape
field.
Source§impl Builder<Complete>
impl Builder<Complete>
Sourcepub fn description(self, description: impl Into<Option<String>>) -> Self
pub fn description(self, description: impl Into<Option<String>>) -> Self
Sets the description
field.
Sourcepub fn connection_details(self, connection_details: ConnectionDetails) -> Self
pub fn connection_details(self, connection_details: ConnectionDetails) -> Self
Sets the connection_details
field.
Sourcepub fn insert_metadata(
self,
key: impl Into<String>,
value: impl Into<String>,
) -> Self
pub fn insert_metadata( self, key: impl Into<String>, value: impl Into<String>, ) -> Self
Adds an entry to the metadata
field.
Sourcepub fn metadata(
self,
metadata: impl IntoIterator<Item = (impl Into<String>, impl Into<String>)>,
) -> Self
pub fn metadata( self, metadata: impl IntoIterator<Item = (impl Into<String>, impl Into<String>)>, ) -> Self
Sets the metadata
field.
Sourcepub fn extend_metadata(
self,
metadata: impl IntoIterator<Item = (impl Into<String>, impl Into<String>)>,
) -> Self
pub fn extend_metadata( self, metadata: impl IntoIterator<Item = (impl Into<String>, impl Into<String>)>, ) -> Self
Adds entries to the metadata
field.
Sourcepub fn insert_required_tag_names(self, required_tag_names: TagName) -> Self
pub fn insert_required_tag_names(self, required_tag_names: TagName) -> Self
Adds a value to the required_tag_names
field.
Sourcepub fn required_tag_names(
self,
required_tag_names: impl IntoIterator<Item = TagName>,
) -> Self
pub fn required_tag_names( self, required_tag_names: impl IntoIterator<Item = TagName>, ) -> Self
Sets the required_tag_names
field.
Sourcepub fn extend_required_tag_names(
self,
required_tag_names: impl IntoIterator<Item = TagName>,
) -> Self
pub fn extend_required_tag_names( self, required_tag_names: impl IntoIterator<Item = TagName>, ) -> Self
Adds values to the required_tag_names
field.
Sourcepub fn insert_available_tag_values(
self,
key: TagName,
value: impl IntoIterator<Item = TagValue>,
) -> Self
pub fn insert_available_tag_values( self, key: TagName, value: impl IntoIterator<Item = TagValue>, ) -> Self
Adds an entry to the available_tag_values
field.
Sourcepub fn available_tag_values(
self,
available_tag_values: impl IntoIterator<Item = (TagName, impl IntoIterator<Item = TagValue>)>,
) -> Self
pub fn available_tag_values( self, available_tag_values: impl IntoIterator<Item = (TagName, impl IntoIterator<Item = TagValue>)>, ) -> Self
Sets the available_tag_values
field.
Sourcepub fn extend_available_tag_values(
self,
available_tag_values: impl IntoIterator<Item = (TagName, impl IntoIterator<Item = TagValue>)>,
) -> Self
pub fn extend_available_tag_values( self, available_tag_values: impl IntoIterator<Item = (TagName, impl IntoIterator<Item = TagValue>)>, ) -> Self
Adds entries to the available_tag_values
field.
Sourcepub fn scraping(self, scraping: impl Into<Option<ScrapingConfig>>) -> Self
pub fn scraping(self, scraping: impl Into<Option<ScrapingConfig>>) -> Self
Sets the scraping
field.
Sourcepub fn should_scrape(self, should_scrape: bool) -> Self
pub fn should_scrape(self, should_scrape: bool) -> Self
Sets the should_scrape
field.
Sourcepub fn limits(self, limits: impl Into<Option<LimitsConfig>>) -> Self
pub fn limits(self, limits: impl Into<Option<LimitsConfig>>) -> Self
Sets the limits
field.
Sourcepub fn workspace(self, workspace: impl Into<Option<WorkspaceRid>>) -> Self
pub fn workspace(self, workspace: impl Into<Option<WorkspaceRid>>) -> Self
Sets the workspace
field.
Sourcepub fn build(self) -> CreateConnection
pub fn build(self) -> CreateConnection
Consumes the builder, returning a CreateConnection
.
Trait Implementations§
Source§impl From<CreateConnection> for Builder<Complete>
impl From<CreateConnection> for Builder<Complete>
Source§fn from(v: CreateConnection) -> Self
fn from(v: CreateConnection) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for Builder<T>where
T: Freeze,
impl<T> RefUnwindSafe for Builder<T>where
T: RefUnwindSafe,
impl<T> Send for Builder<T>where
T: Send,
impl<T> Sync for Builder<T>where
T: Sync,
impl<T> Unpin for Builder<T>where
T: Unpin,
impl<T> UnwindSafe for Builder<T>where
T: UnwindSafe,
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