#[non_exhaustive]pub struct GetChunkInputBuilder { /* private fields */ }
Expand description
A builder for GetChunkInput
.
Implementations§
source§impl GetChunkInputBuilder
impl GetChunkInputBuilder
sourcepub fn storage_job_id(self, input: impl Into<String>) -> Self
pub fn storage_job_id(self, input: impl Into<String>) -> Self
Storage job id
sourcepub fn set_storage_job_id(self, input: Option<String>) -> Self
pub fn set_storage_job_id(self, input: Option<String>) -> Self
Storage job id
sourcepub fn chunk_token(self, input: impl Into<String>) -> Self
pub fn chunk_token(self, input: impl Into<String>) -> Self
Chunk token
sourcepub fn set_chunk_token(self, input: Option<String>) -> Self
pub fn set_chunk_token(self, input: Option<String>) -> Self
Chunk token
sourcepub fn build(self) -> Result<GetChunkInput, BuildError>
pub fn build(self) -> Result<GetChunkInput, BuildError>
Consumes the builder and constructs a GetChunkInput
.
Trait Implementations§
source§impl Clone for GetChunkInputBuilder
impl Clone for GetChunkInputBuilder
source§fn clone(&self) -> GetChunkInputBuilder
fn clone(&self) -> GetChunkInputBuilder
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 Debug for GetChunkInputBuilder
impl Debug for GetChunkInputBuilder
source§impl Default for GetChunkInputBuilder
impl Default for GetChunkInputBuilder
source§fn default() -> GetChunkInputBuilder
fn default() -> GetChunkInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetChunkInputBuilder> for GetChunkInputBuilder
impl PartialEq<GetChunkInputBuilder> for GetChunkInputBuilder
source§fn eq(&self, other: &GetChunkInputBuilder) -> bool
fn eq(&self, other: &GetChunkInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.