pub enum Target {
DocsSite,
OkfBundle,
}Expand description
A render target for the graph.
Variants§
DocsSite
Static documentation website (ADRs, blueprints, AI context pages).
OkfBundle
An Open Knowledge Format bundle (OKF v0.2).
Replaced ObsidianVault in 4.0.0. The vault was one-way — Roteiro wrote
it, nothing read it back, and only Obsidian could consume it. An OKF
bundle is markdown with YAML frontmatter in nested directories, so
Obsidian still opens it as a vault; what changed is that the output now
targets a specification with other consumers rather than one
application’s conventions.
Implementations§
Trait Implementations§
impl Copy for Target
impl Eq for Target
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnsafeUnpin for Target
impl UnwindSafe for Target
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.