pub struct CreateBlobPartRequest<'a> {
pub blob_id: String,
pub data64: String,
pub md5: String,
pub part_number: i64,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§blob_id: String§data64: String§md5: String§part_number: i64Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CreateBlobPartRequest<'a>
impl<'a> !RefUnwindSafe for CreateBlobPartRequest<'a>
impl<'a> Send for CreateBlobPartRequest<'a>
impl<'a> Sync for CreateBlobPartRequest<'a>
impl<'a> Unpin for CreateBlobPartRequest<'a>
impl<'a> !UnwindSafe for CreateBlobPartRequest<'a>
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