pub struct ExportSource {
pub scope: VaultScope,
pub filter: Option<String>,
pub format: ExportFormat,
pub target: String,
pub template: Option<String>,
}Expand description
Source for Job::Export — generates a file from vault notes.
JobClass::Agent | Human.
Fields§
§scope: VaultScopeScope of notes to export.
filter: Option<String>Optional FTS filter (e.g. "sections:decisions").
format: ExportFormatExport format.
target: StringOpenDAL destination path (e.g. "exports/decisions-2026-05.pdf").
template: Option<String>Markdown template for rendering.
Trait Implementations§
Source§impl Clone for ExportSource
impl Clone for ExportSource
Source§fn clone(&self) -> ExportSource
fn clone(&self) -> ExportSource
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 moreSource§impl Debug for ExportSource
impl Debug for ExportSource
Source§impl<'de> Deserialize<'de> for ExportSource
impl<'de> Deserialize<'de> for ExportSource
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
Auto Trait Implementations§
impl Freeze for ExportSource
impl RefUnwindSafe for ExportSource
impl Send for ExportSource
impl Sync for ExportSource
impl Unpin for ExportSource
impl UnsafeUnpin for ExportSource
impl UnwindSafe for ExportSource
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