#[non_exhaustive]pub struct UploadReadSetPartInput {
pub payload: ByteStream,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.payload: ByteStream
The read set data to upload for a part.
Implementations§
source§impl UploadReadSetPartInput
impl UploadReadSetPartInput
sourcepub fn sequence_store_id(&self) -> Option<&str>
pub fn sequence_store_id(&self) -> Option<&str>
The Sequence Store ID used for the multipart upload.
sourcepub fn part_source(&self) -> Option<&ReadSetPartSource>
pub fn part_source(&self) -> Option<&ReadSetPartSource>
The source file for an upload part.
sourcepub fn part_number(&self) -> Option<i32>
pub fn part_number(&self) -> Option<i32>
The number of the part being uploaded.
sourcepub fn payload(&self) -> &ByteStream
pub fn payload(&self) -> &ByteStream
The read set data to upload for a part.
source§impl UploadReadSetPartInput
impl UploadReadSetPartInput
sourcepub fn builder() -> UploadReadSetPartInputBuilder
pub fn builder() -> UploadReadSetPartInputBuilder
Creates a new builder-style object to manufacture UploadReadSetPartInput
.
source§impl UploadReadSetPartInput
impl UploadReadSetPartInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UploadReadSetPart, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<UploadReadSetPart, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UploadReadSetPart
>
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for UploadReadSetPartInput
impl Send for UploadReadSetPartInput
impl Sync for UploadReadSetPartInput
impl Unpin for UploadReadSetPartInput
impl !UnwindSafe for UploadReadSetPartInput
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