pub enum WriteBackKind {
EntityFrontMatter,
InlineEvent,
Relationship,
}Expand description
The type of write-back insertion.
Variants§
EntityFrontMatter
Insert id: <NULID> into YAML front matter of an entity file.
line is the line of the --- closing delimiter; insert before it.
InlineEvent
Insert - id: <NULID> bullet after the H3 heading line.
line is the line of the ### Name heading.
Relationship
Insert - id: <NULID> nested bullet after the relationship line.
line is the line of - Source -> Target: type.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WriteBackKind
impl RefUnwindSafe for WriteBackKind
impl Send for WriteBackKind
impl Sync for WriteBackKind
impl Unpin for WriteBackKind
impl UnsafeUnpin for WriteBackKind
impl UnwindSafe for WriteBackKind
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