pub struct FileContextStoreStatusV1 {
pub schema: String,
pub root: String,
pub receipt_count: usize,
pub total_bytes: u64,
pub stale_tmp_files_removed: usize,
pub index_built: bool,
pub searchable: bool,
pub last_receipt: Option<String>,
}Fields§
§schema: String§root: String§receipt_count: usize§total_bytes: u64§stale_tmp_files_removed: usize§index_built: bool§searchable: bool§last_receipt: Option<String>Trait Implementations§
Source§impl Clone for FileContextStoreStatusV1
impl Clone for FileContextStoreStatusV1
Source§fn clone(&self) -> FileContextStoreStatusV1
fn clone(&self) -> FileContextStoreStatusV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileContextStoreStatusV1
impl Debug for FileContextStoreStatusV1
Source§impl<'de> Deserialize<'de> for FileContextStoreStatusV1
impl<'de> Deserialize<'de> for FileContextStoreStatusV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FileContextStoreStatusV1
Source§impl PartialEq for FileContextStoreStatusV1
impl PartialEq for FileContextStoreStatusV1
Source§fn eq(&self, other: &FileContextStoreStatusV1) -> bool
fn eq(&self, other: &FileContextStoreStatusV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FileContextStoreStatusV1
impl Serialize for FileContextStoreStatusV1
impl StructuralPartialEq for FileContextStoreStatusV1
Auto Trait Implementations§
impl Freeze for FileContextStoreStatusV1
impl RefUnwindSafe for FileContextStoreStatusV1
impl Send for FileContextStoreStatusV1
impl Sync for FileContextStoreStatusV1
impl Unpin for FileContextStoreStatusV1
impl UnsafeUnpin for FileContextStoreStatusV1
impl UnwindSafe for FileContextStoreStatusV1
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