Vault

Struct Vault 

Source
pub struct Vault {
    pub name: String,
    pub path: PathBuf,
    pub open: bool,
    pub ts: u64,
}
Expand description

Represents a single Obsidian vault.

A vault is a folder containing notes and other metadata.

Fields§

§name: String

The name of the vault, inferred from its directory name.

§path: PathBuf

Filesystem path to the vault’s directory.

§open: bool

Whether the vault is marked ‘open’ by Obsidian.

§ts: u64

Timestamp of last update or creation.

Implementations§

Source§

impl Vault

Source

pub fn entries(&self) -> Vec<VaultEntry>

Returns a Vec of Markdown vault entries in this vault as VaultEntry structs. Entries can be either directories or files (notes). If the directory is marked hidden with a dot (.) prefix it will be filtered out from the resulting Vec.

The returned entries are not sorted.

§Examples
use basalt_core::obsidian::{Vault, Note};

let vault = Vault {
    name: "MyVault".into(),
    path: "path/to/my_vault".into(),
    ..Default::default()
};

assert_eq!(vault.entries(), vec![]);
Source

pub fn create_note(&self, name: &str) -> Result<Note, Error>

Creates a new empty note with the provided name.

If a note with the given name already exists, a numbered suffix will be appended (e.g., “Note 1”, “Note 2”, etc.) to find an available name.

§Errors

Returns an error if:

  • I/O operations fail (directory creation, file writing, or path checks)
  • No available name is found after 999 attempts (Error::MaxAttemptsExceeded)
§Examples
use std::fs;
use tempfile::tempdir;
use basalt_core::obsidian::{Vault, Note, Error};

let tmp_dir = tempdir()?;

let vault = Vault {
  path: tmp_dir.path().to_path_buf(),
  ..Default::default()
};

let note = vault.create_note("Arbitrary Name")?;
assert_eq!(fs::exists(&note.path)?, true);
Source

pub fn find_available_note_name( &self, name: &str, ) -> Result<(String, PathBuf), Error>

Find available note name by incrementing number suffix at the end.

Increments until we find a ‘free’ name e.g. if “Untitled 1” exists we will try next “Untitled 2”, and then “Untitled 3” and so on.

§Errors

Returns Error::MaxAttemptsExceeded if no available name is found after 999 attempts.

§Examples
use std::fs;
use tempfile::tempdir;
use basalt_core::obsidian::{Vault, Note, Error};

let tmp_dir = tempdir()?;
let tmp_path = tmp_dir.path();

let vault = Vault {
  path: tmp_path.to_path_buf(),
  ..Default::default()
};

let note_name = "Arbitrary Name";
fs::write(tmp_path.join(note_name).with_extension("md"), "")?;

let (name, path) = vault.find_available_note_name(note_name)?;
assert_eq!(&name, "Arbitrary Name 1");
assert_eq!(fs::exists(&path)?, false);
Source

pub fn create_untitled_note(&self) -> Result<Note, Error>

Creates a new empty note with name “Untitled” or “Untitled {n}”.

This is a convenience method that calls Vault::create_note with “Untitled” as the name.

§Errors

Returns an error if:

§Examples
use std::{fs, result};
use tempfile::tempdir;
use basalt_core::obsidian::{Vault, Note, Error};

let tmp_dir = tempdir()?;

let vault = Vault {
  path: tmp_dir.path().to_path_buf(),
  ..Default::default()
};

let note = vault.create_untitled_note()?;
assert_eq!(&note.name, "Untitled");
assert_eq!(fs::exists(&note.path)?, true);

(1..=100).try_for_each(|n| -> result::Result<(), Error> {
  let note = vault.create_untitled_note()?;
  assert_eq!(note.name, format!("Untitled {n}"));
  assert_eq!(fs::exists(&note.path)?, true);
  Ok(())
})?;

Trait Implementations§

Source§

impl Clone for Vault

Source§

fn clone(&self) -> Vault

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Vault

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Vault

Source§

fn default() -> Vault

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Vault

Source§

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 Vault

Source§

fn eq(&self, other: &Vault) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Vault

Auto Trait Implementations§

§

impl Freeze for Vault

§

impl RefUnwindSafe for Vault

§

impl Send for Vault

§

impl Sync for Vault

§

impl Unpin for Vault

§

impl UnwindSafe for Vault

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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,