pub struct FileRecordStore { /* private fields */ }Expand description
JSONL ファイルベースの RecordStore 実装
Implementations§
Source§impl FileRecordStore
impl FileRecordStore
pub fn new( base_path: impl AsRef<Path>, ) -> Result<FileRecordStore, RecordStoreError>
pub fn with_cache( base_path: impl AsRef<Path>, ) -> Result<FileRecordStore, RecordStoreError>
Trait Implementations§
Source§impl RecordStore for FileRecordStore
impl RecordStore for FileRecordStore
Source§fn query(
&self,
filter: &RecordFilter,
) -> Result<Vec<StoredRecord>, RecordStoreError>
fn query( &self, filter: &RecordFilter, ) -> Result<Vec<StoredRecord>, RecordStoreError>
フィルタで検索
Source§fn count(
&self,
filter: Option<&RecordFilter>,
) -> Result<usize, RecordStoreError>
fn count( &self, filter: Option<&RecordFilter>, ) -> Result<usize, RecordStoreError>
件数を取得
Source§fn append_batch(
&self,
records: &[Record],
) -> Result<Vec<RecordId>, RecordStoreError>
fn append_batch( &self, records: &[Record], ) -> Result<Vec<RecordId>, RecordStoreError>
複数の Record を一括追加
Auto Trait Implementations§
impl !Freeze for FileRecordStore
impl RefUnwindSafe for FileRecordStore
impl Send for FileRecordStore
impl Sync for FileRecordStore
impl Unpin for FileRecordStore
impl UnwindSafe for FileRecordStore
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more