Skip to main content

Database

Struct Database 

Source
pub struct Database { /* private fields */ }

Implementations§

Source§

impl Database

Source

pub fn open<P: AsRef<Path>>(path: P) -> Result<Self>

Source

pub fn transaction(&mut self) -> Result<DatabaseTransaction<'_>>

Source

pub fn initialize(&self, force: bool) -> Result<()>

Source

pub fn get_version(&self) -> Result<Option<i32>>

Source

pub fn get_stats(&self) -> Result<DatabaseStats>

Source

pub fn insert_note( &self, path: &str, title: &str, mtime: u64, hash: &str, frontmatter_json: Option<&str>, ) -> Result<i64>

Source

pub fn get_note_by_path(&self, path: &str) -> Result<Option<i64>>

Source

pub fn get_note_metadata_by_path( &self, path: &str, ) -> Result<Option<NoteMetadata>>

Source

pub fn insert_tag(&self, note_id: i64, tag: &str) -> Result<()>

Source

pub fn insert_chunk( &self, note_id: i64, heading_path: Option<&str>, text: &str, ) -> Result<()>

Source

pub fn insert_chunk_with_offset( &self, note_id: i64, heading_path: Option<&str>, text: &str, byte_offset: i32, byte_length: i32, ) -> Result<()>

Source

pub fn clear_note_data(&self, note_id: i64) -> Result<()>

Source

pub fn conn(&self) -> DatabaseQueryExecutor<'_>

Execute a query function with access to the database connection

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> 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, 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.