pub struct UploadOutcome {
pub name: String,
pub parent_folder_id: String,
pub result: UploadResult,
}Expand description
The planned (and, after a real run, final) outcome of one upload call.
Fields§
§name: StringThe requested name.
parent_folder_id: StringThe requested parent folder id.
result: UploadResultThe result.
Trait Implementations§
Source§impl Clone for UploadOutcome
impl Clone for UploadOutcome
Source§fn clone(&self) -> UploadOutcome
fn clone(&self) -> UploadOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UploadOutcome
impl Debug for UploadOutcome
Source§impl JsonlSerialize for UploadOutcome
impl JsonlSerialize for UploadOutcome
Auto Trait Implementations§
impl Freeze for UploadOutcome
impl RefUnwindSafe for UploadOutcome
impl Send for UploadOutcome
impl Sync for UploadOutcome
impl Unpin for UploadOutcome
impl UnsafeUnpin for UploadOutcome
impl UnwindSafe for UploadOutcome
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