pub enum DeleteTarget {
All,
AllWithFree,
ById {
free_data: bool,
},
ByNumber {
free_data: bool,
},
AtCursor {
free_data: bool,
},
Frames {
free_data: bool,
},
AtCell {
free_data: bool,
},
AtCellWithZIndex {
free_data: bool,
},
ByIdRange {
free_data: bool,
},
ByColumn {
free_data: bool,
},
ByRow {
free_data: bool,
},
ByZIndex {
free_data: bool,
},
}Expand description
Delete target specification
Variants§
All
Delete all visible placements (a/A)
AllWithFree
Delete all visible placements and free image data (A)
ById
Delete by image ID (i/I)
ByNumber
Delete by image number (n/N)
AtCursor
Delete at cursor position (c/C)
Frames
Delete animation frames (f/F)
AtCell
Delete at specific cell (p/P)
AtCellWithZIndex
Delete at cell with z-index (q/Q)
ByIdRange
Delete by ID range (r/R)
ByColumn
Delete by column (x/X)
ByRow
Delete by row (y/Y)
ByZIndex
Delete by z-index (z/Z)
Implementations§
Trait Implementations§
Source§impl Clone for DeleteTarget
impl Clone for DeleteTarget
Source§fn clone(&self) -> DeleteTarget
fn clone(&self) -> DeleteTarget
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 moreSource§impl Debug for DeleteTarget
impl Debug for DeleteTarget
Source§impl Hash for DeleteTarget
impl Hash for DeleteTarget
Source§impl PartialEq for DeleteTarget
impl PartialEq for DeleteTarget
impl Copy for DeleteTarget
impl Eq for DeleteTarget
impl StructuralPartialEq for DeleteTarget
Auto Trait Implementations§
impl Freeze for DeleteTarget
impl RefUnwindSafe for DeleteTarget
impl Send for DeleteTarget
impl Sync for DeleteTarget
impl Unpin for DeleteTarget
impl UnsafeUnpin for DeleteTarget
impl UnwindSafe for DeleteTarget
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