pub struct PendingFileOperations {
pub create_operations: Vec<(AssetId, PathBuf)>,
pub modify_operations: Vec<(AssetId, PathBuf)>,
pub delete_operations: Vec<(AssetId, PathBuf)>,
}
Fields§
§create_operations: Vec<(AssetId, PathBuf)>
§modify_operations: Vec<(AssetId, PathBuf)>
§delete_operations: Vec<(AssetId, PathBuf)>
Trait Implementations§
Source§impl Default for PendingFileOperations
impl Default for PendingFileOperations
Source§fn default() -> PendingFileOperations
fn default() -> PendingFileOperations
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PendingFileOperations
impl RefUnwindSafe for PendingFileOperations
impl Send for PendingFileOperations
impl Sync for PendingFileOperations
impl Unpin for PendingFileOperations
impl UnwindSafe for PendingFileOperations
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