pub struct StringMappingArgsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> StringMappingArgsBuilder<S>
impl<S: State> StringMappingArgsBuilder<S>
Sourcepub fn build(self) -> StringMappingArgswhere
S: IsComplete,
pub fn build(self) -> StringMappingArgswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn identifiers(
self,
value: Vec<String>,
) -> StringMappingArgsBuilder<SetIdentifiers<S>>where
S::Identifiers: IsUnset,
pub fn identifiers(
self,
value: Vec<String>,
) -> StringMappingArgsBuilder<SetIdentifiers<S>>where
S::Identifiers: IsUnset,
Required.
List of genes to retrieve network for
Sourcepub fn echo_query(
self,
value: bool,
) -> StringMappingArgsBuilder<SetEchoQuery<S>>where
S::EchoQuery: IsUnset,
pub fn echo_query(
self,
value: bool,
) -> StringMappingArgsBuilder<SetEchoQuery<S>>where
S::EchoQuery: IsUnset,
Sourcepub fn maybe_echo_query(
self,
value: Option<bool>,
) -> StringMappingArgsBuilder<SetEchoQuery<S>>where
S::EchoQuery: IsUnset,
pub fn maybe_echo_query(
self,
value: Option<bool>,
) -> StringMappingArgsBuilder<SetEchoQuery<S>>where
S::EchoQuery: IsUnset,
Sourcepub fn limit(self, value: usize) -> StringMappingArgsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
pub fn limit(self, value: usize) -> StringMappingArgsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
Sourcepub fn maybe_limit(
self,
value: Option<usize>,
) -> StringMappingArgsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
pub fn maybe_limit(
self,
value: Option<usize>,
) -> StringMappingArgsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
Sourcepub fn species(self, value: usize) -> StringMappingArgsBuilder<SetSpecies<S>>where
S::Species: IsUnset,
pub fn species(self, value: usize) -> StringMappingArgsBuilder<SetSpecies<S>>where
S::Species: IsUnset,
Sourcepub fn maybe_species(
self,
value: Option<usize>,
) -> StringMappingArgsBuilder<SetSpecies<S>>where
S::Species: IsUnset,
pub fn maybe_species(
self,
value: Option<usize>,
) -> StringMappingArgsBuilder<SetSpecies<S>>where
S::Species: IsUnset,
Sourcepub fn caller_identity(
self,
value: String,
) -> StringMappingArgsBuilder<SetCallerIdentity<S>>where
S::CallerIdentity: IsUnset,
pub fn caller_identity(
self,
value: String,
) -> StringMappingArgsBuilder<SetCallerIdentity<S>>where
S::CallerIdentity: IsUnset,
Sourcepub fn maybe_caller_identity(
self,
value: Option<String>,
) -> StringMappingArgsBuilder<SetCallerIdentity<S>>where
S::CallerIdentity: IsUnset,
pub fn maybe_caller_identity(
self,
value: Option<String>,
) -> StringMappingArgsBuilder<SetCallerIdentity<S>>where
S::CallerIdentity: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for StringMappingArgsBuilder<S>
impl<S> RefUnwindSafe for StringMappingArgsBuilder<S>
impl<S> Send for StringMappingArgsBuilder<S>
impl<S> Sync for StringMappingArgsBuilder<S>
impl<S> Unpin for StringMappingArgsBuilder<S>
impl<S> UnwindSafe for StringMappingArgsBuilder<S>
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 more