Struct atuin_client::database::Sqlite [−][src]
pub struct Sqlite { /* fields omitted */ }
Implementations
Trait Implementations
fn save<'life0, 'life1, 'async_trait>(
&'life0 mut self,
h: &'life1 History
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn save_bulk<'life0, 'life1, 'async_trait>(
&'life0 mut self,
h: &'life1 [History]
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn load<'life0, 'life1, 'async_trait>(
&'life0 self,
id: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<History>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn update<'life0, 'life1, 'async_trait>(
&'life0 self,
h: &'life1 History
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn list<'life0, 'async_trait>(
&'life0 self,
max: Option<usize>,
unique: bool
) -> Pin<Box<dyn Future<Output = Result<Vec<History>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn range<'life0, 'async_trait>(
&'life0 self,
from: DateTime<Utc>,
to: DateTime<Utc>
) -> Pin<Box<dyn Future<Output = Result<Vec<History>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn first<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<History>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn last<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<History>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn before<'life0, 'async_trait>(
&'life0 self,
timestamp: DateTime<Utc>,
count: i64
) -> Pin<Box<dyn Future<Output = Result<Vec<History>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn history_count<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Auto Trait Implementations
impl !RefUnwindSafe for Sqlite
impl !UnwindSafe for Sqlite
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more