pub struct CompleteUploadRes {
pub md5: Digest,
pub bytes: u64,
pub content_id: String,
pub path: PathOnDevice,
pub modified: DateTime<Utc>,
}
Expand description
Successful upload response.
Fields§
§md5: Digest
MD5 sum of the upload. If it doesn’t match the one specified in the allocation request, the revision will probably be considered corrupt by Jottacloud.
bytes: u64
Bytes uploaded in total.
content_id: String
Content id?
path: PathOnDevice
Path.
modified: DateTime<Utc>
Modification date.
Trait Implementations§
Source§impl Debug for CompleteUploadRes
impl Debug for CompleteUploadRes
Source§impl<'de> Deserialize<'de> for CompleteUploadRes
impl<'de> Deserialize<'de> for CompleteUploadRes
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 CompleteUploadRes
impl RefUnwindSafe for CompleteUploadRes
impl Send for CompleteUploadRes
impl Sync for CompleteUploadRes
impl Unpin for CompleteUploadRes
impl UnwindSafe for CompleteUploadRes
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