#[non_exhaustive]pub struct BatchEnvironmentVariableBuilder { /* private fields */ }Expand description
A builder for BatchEnvironmentVariable.
Implementations§
source§impl BatchEnvironmentVariableBuilder
 
impl BatchEnvironmentVariableBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
 
pub fn name(self, input: impl Into<String>) -> Self
The name of the key-value pair. For environment variables, this is the name of the environment variable.
sourcepub fn set_name(self, input: Option<String>) -> Self
 
pub fn set_name(self, input: Option<String>) -> Self
The name of the key-value pair. For environment variables, this is the name of the environment variable.
sourcepub fn get_name(&self) -> &Option<String>
 
pub fn get_name(&self) -> &Option<String>
The name of the key-value pair. For environment variables, this is the name of the environment variable.
sourcepub fn value(self, input: impl Into<String>) -> Self
 
pub fn value(self, input: impl Into<String>) -> Self
The value of the key-value pair. For environment variables, this is the value of the environment variable.
sourcepub fn set_value(self, input: Option<String>) -> Self
 
pub fn set_value(self, input: Option<String>) -> Self
The value of the key-value pair. For environment variables, this is the value of the environment variable.
sourcepub fn get_value(&self) -> &Option<String>
 
pub fn get_value(&self) -> &Option<String>
The value of the key-value pair. For environment variables, this is the value of the environment variable.
sourcepub fn build(self) -> BatchEnvironmentVariable
 
pub fn build(self) -> BatchEnvironmentVariable
Consumes the builder and constructs a BatchEnvironmentVariable.
Trait Implementations§
source§impl Clone for BatchEnvironmentVariableBuilder
 
impl Clone for BatchEnvironmentVariableBuilder
source§fn clone(&self) -> BatchEnvironmentVariableBuilder
 
fn clone(&self) -> BatchEnvironmentVariableBuilder
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 BatchEnvironmentVariableBuilder
 
impl Default for BatchEnvironmentVariableBuilder
source§fn default() -> BatchEnvironmentVariableBuilder
 
fn default() -> BatchEnvironmentVariableBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchEnvironmentVariableBuilder
 
impl PartialEq for BatchEnvironmentVariableBuilder
source§fn eq(&self, other: &BatchEnvironmentVariableBuilder) -> bool
 
fn eq(&self, other: &BatchEnvironmentVariableBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchEnvironmentVariableBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BatchEnvironmentVariableBuilder
impl Send for BatchEnvironmentVariableBuilder
impl Sync for BatchEnvironmentVariableBuilder
impl Unpin for BatchEnvironmentVariableBuilder
impl UnwindSafe for BatchEnvironmentVariableBuilder
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>
Creates a shared type from an unshared type.