pub struct MovePlan {
pub dest_folder_id: String,
pub files: Vec<MoveOutcome>,
}Expand description
The planned (and, after execute, final) batch.
Fields§
§dest_folder_id: StringThe shared destination every file in files was planned against.
files: Vec<MoveOutcome>One entry per requested file id, in request order.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MovePlan
impl RefUnwindSafe for MovePlan
impl Send for MovePlan
impl Sync for MovePlan
impl Unpin for MovePlan
impl UnsafeUnpin for MovePlan
impl UnwindSafe for MovePlan
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