#[non_exhaustive]pub struct BatchGetCrawlersOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetCrawlersOutput.
Implementations§
Source§impl BatchGetCrawlersOutputBuilder
impl BatchGetCrawlersOutputBuilder
Sourcepub fn crawlers(self, input: Crawler) -> Self
pub fn crawlers(self, input: Crawler) -> Self
Appends an item to crawlers.
To override the contents of this collection use set_crawlers.
A list of crawler definitions.
Sourcepub fn set_crawlers(self, input: Option<Vec<Crawler>>) -> Self
pub fn set_crawlers(self, input: Option<Vec<Crawler>>) -> Self
A list of crawler definitions.
Sourcepub fn get_crawlers(&self) -> &Option<Vec<Crawler>>
pub fn get_crawlers(&self) -> &Option<Vec<Crawler>>
A list of crawler definitions.
Sourcepub fn crawlers_not_found(self, input: impl Into<String>) -> Self
pub fn crawlers_not_found(self, input: impl Into<String>) -> Self
Appends an item to crawlers_not_found.
To override the contents of this collection use set_crawlers_not_found.
A list of names of crawlers that were not found.
Sourcepub fn set_crawlers_not_found(self, input: Option<Vec<String>>) -> Self
pub fn set_crawlers_not_found(self, input: Option<Vec<String>>) -> Self
A list of names of crawlers that were not found.
Sourcepub fn get_crawlers_not_found(&self) -> &Option<Vec<String>>
pub fn get_crawlers_not_found(&self) -> &Option<Vec<String>>
A list of names of crawlers that were not found.
Sourcepub fn build(self) -> BatchGetCrawlersOutput
pub fn build(self) -> BatchGetCrawlersOutput
Consumes the builder and constructs a BatchGetCrawlersOutput.
Trait Implementations§
Source§impl Clone for BatchGetCrawlersOutputBuilder
impl Clone for BatchGetCrawlersOutputBuilder
Source§fn clone(&self) -> BatchGetCrawlersOutputBuilder
fn clone(&self) -> BatchGetCrawlersOutputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchGetCrawlersOutputBuilder
impl Default for BatchGetCrawlersOutputBuilder
Source§fn default() -> BatchGetCrawlersOutputBuilder
fn default() -> BatchGetCrawlersOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchGetCrawlersOutputBuilder
impl PartialEq for BatchGetCrawlersOutputBuilder
Source§fn eq(&self, other: &BatchGetCrawlersOutputBuilder) -> bool
fn eq(&self, other: &BatchGetCrawlersOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchGetCrawlersOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetCrawlersOutputBuilder
impl RefUnwindSafe for BatchGetCrawlersOutputBuilder
impl Send for BatchGetCrawlersOutputBuilder
impl Sync for BatchGetCrawlersOutputBuilder
impl Unpin for BatchGetCrawlersOutputBuilder
impl UnsafeUnpin for BatchGetCrawlersOutputBuilder
impl UnwindSafe for BatchGetCrawlersOutputBuilder
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.