pub enum BlockOpKind {
Replace,
Delete,
InsertAfter,
}Expand description
Op kind of a deferred block edit, for block_unresolved_message and
block_single_line_message.
Variants§
Replace
Block replacement (SWAP.BLK).
Delete
Block deletion (DEL.BLK).
InsertAfter
Insert immediately after a block (INS.BLK.POST).
Trait Implementations§
Source§impl Clone for BlockOpKind
impl Clone for BlockOpKind
Source§fn clone(&self) -> BlockOpKind
fn clone(&self) -> BlockOpKind
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 moreimpl Copy for BlockOpKind
Source§impl Debug for BlockOpKind
impl Debug for BlockOpKind
impl Eq for BlockOpKind
Source§impl PartialEq for BlockOpKind
impl PartialEq for BlockOpKind
impl StructuralPartialEq for BlockOpKind
Auto Trait Implementations§
impl Freeze for BlockOpKind
impl RefUnwindSafe for BlockOpKind
impl Send for BlockOpKind
impl Sync for BlockOpKind
impl Unpin for BlockOpKind
impl UnsafeUnpin for BlockOpKind
impl UnwindSafe for BlockOpKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.