pub struct FileUploadChunksResponse {
pub upload_id: String,
pub complete: bool,
pub status: Option<String>,
pub uploaded_part: Option<u32>,
}Expand description
Response for chunk upload.
Fields§
§upload_id: StringUpload session identifier.
complete: boolWhether all chunks for the upload session are uploaded.
status: Option<String>Optional status message.
uploaded_part: Option<u32>Optional current chunk index.
Trait Implementations§
Source§impl Clone for FileUploadChunksResponse
impl Clone for FileUploadChunksResponse
Source§fn clone(&self) -> FileUploadChunksResponse
fn clone(&self) -> FileUploadChunksResponse
Returns a duplicate 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 FileUploadChunksResponse
impl Debug for FileUploadChunksResponse
Source§impl<'de> Deserialize<'de> for FileUploadChunksResponse
impl<'de> Deserialize<'de> for FileUploadChunksResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FileUploadChunksResponse
impl RefUnwindSafe for FileUploadChunksResponse
impl Send for FileUploadChunksResponse
impl Sync for FileUploadChunksResponse
impl Unpin for FileUploadChunksResponse
impl UnsafeUnpin for FileUploadChunksResponse
impl UnwindSafe for FileUploadChunksResponse
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