pub enum TraversalOutput {
StructureOnly,
StructureAndBlocks,
StructureWithPreviews,
}Expand description
Output format for traversal results
Variants§
StructureOnly
Only return structure (block IDs and relationships)
StructureAndBlocks
Return structure and full block content
StructureWithPreviews
Return structure with content previews
Trait Implementations§
Source§impl Clone for TraversalOutput
impl Clone for TraversalOutput
Source§fn clone(&self) -> TraversalOutput
fn clone(&self) -> TraversalOutput
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 TraversalOutput
impl Debug for TraversalOutput
Source§impl Default for TraversalOutput
impl Default for TraversalOutput
Source§fn default() -> TraversalOutput
fn default() -> TraversalOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TraversalOutput
impl<'de> Deserialize<'de> for TraversalOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TraversalOutput
impl PartialEq for TraversalOutput
Source§impl Serialize for TraversalOutput
impl Serialize for TraversalOutput
impl Copy for TraversalOutput
impl Eq for TraversalOutput
impl StructuralPartialEq for TraversalOutput
Auto Trait Implementations§
impl Freeze for TraversalOutput
impl RefUnwindSafe for TraversalOutput
impl Send for TraversalOutput
impl Sync for TraversalOutput
impl Unpin for TraversalOutput
impl UnwindSafe for TraversalOutput
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