pub struct FileClipboard {
pub op: ClipboardOp,
pub sources: Vec<PathBuf>,
}Expand description
In-dialog clipboard for file operations (copy/cut/paste).
Fields§
§op: ClipboardOpOperation kind.
sources: Vec<PathBuf>Absolute source paths captured when the clipboard was populated.
Trait Implementations§
Source§impl Clone for FileClipboard
impl Clone for FileClipboard
Source§fn clone(&self) -> FileClipboard
fn clone(&self) -> FileClipboard
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 moreAuto Trait Implementations§
impl Freeze for FileClipboard
impl RefUnwindSafe for FileClipboard
impl Send for FileClipboard
impl Sync for FileClipboard
impl Unpin for FileClipboard
impl UnsafeUnpin for FileClipboard
impl UnwindSafe for FileClipboard
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