Skip to main content

QuillSource

Struct QuillSource 

Source
pub struct QuillSource { /* private fields */ }
Expand description

A quill source bundle — pure data parsed from an authored quill directory.

A QuillSource is the file-bundle, config, and metadata; it has no rendering ability. The engine composes a QuillSource with a resolved backend into a renderable Quill (see quillmark::Quill).

Implementations§

Source§

impl QuillSource

Source

pub fn from_tree(root: FileTreeNode) -> Result<Self, Vec<Diagnostic>>

Create a QuillSource from a tree structure.

This is the authoritative method for creating a QuillSource from an in-memory file tree. Filesystem walking belongs upstream (see quillmark::Quillmark::quill_from_path).

§Arguments
  • root - The root node of the file tree
§Errors

Returns a non-empty Vec<Diagnostic> describing every problem found. When Quill.yaml itself contains multiple errors they are all reported together; subsequent failures (missing plate, malformed example) surface as single-element vectors.

Source§

impl QuillSource

Source

pub fn get_file<P: AsRef<Path>>(&self, path: P) -> Option<&[u8]>

Get file contents by path (relative to quill root)

Source

pub fn file_exists<P: AsRef<Path>>(&self, path: P) -> bool

Check if a file exists in memory

Source

pub fn dir_exists<P: AsRef<Path>>(&self, path: P) -> bool

Check if a directory exists in memory

Source

pub fn list_files<P: AsRef<Path>>(&self, path: P) -> Vec<String>

List files in a directory (non-recursive, returns file names only)

Source

pub fn list_subdirectories<P: AsRef<Path>>(&self, path: P) -> Vec<String>

List subdirectories in a directory (non-recursive, returns directory names only)

Source

pub fn list_directory<P: AsRef<Path>>(&self, dir_path: P) -> Vec<PathBuf>

List all files in a directory (returns paths relative to quill root)

Source

pub fn list_directories<P: AsRef<Path>>(&self, dir_path: P) -> Vec<PathBuf>

List all directories in a directory (returns paths relative to quill root)

Source

pub fn find_files<P: AsRef<Path>>(&self, pattern: P) -> Vec<PathBuf>

Get all files matching a pattern (supports glob-style wildcards)

Source§

impl QuillSource

Source

pub fn name(&self) -> &str

The quill’s declared name.

Source

pub fn backend_id(&self) -> &str

The backend identifier declared in Quill.yaml (e.g. "typst").

Source

pub fn metadata(&self) -> &HashMap<String, QuillValue>

Quill-specific metadata parsed from Quill.yaml.

Source

pub fn plate(&self) -> Option<&str>

The plate template content, if the quill declares one.

Source

pub fn example(&self) -> Option<&str>

The example Markdown content, if the quill ships one.

Source

pub fn config(&self) -> &QuillConfig

The parsed schema configuration.

Source

pub fn files(&self) -> &FileTreeNode

The in-memory file tree for this quill.

Trait Implementations§

Source§

impl Clone for QuillSource

Source§

fn clone(&self) -> QuillSource

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for QuillSource

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.