pub enum BlockOp {
Replace,
Delete,
InsertAfter,
}Expand description
Kind of block operation to perform (block-ops feature — future).
Variants§
Replace
Replace the resolved block’s content.
Delete
Delete the resolved block.
InsertAfter
Insert new content after the resolved block.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlockOp
impl RefUnwindSafe for BlockOp
impl Send for BlockOp
impl Sync for BlockOp
impl Unpin for BlockOp
impl UnsafeUnpin for BlockOp
impl UnwindSafe for BlockOp
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