pub struct WorkspaceSqliteMetadata {
pub parser: String,
pub table_count: usize,
pub tables: Vec<WorkspaceSqliteTableMetadata>,
pub truncated: bool,
pub warnings: Vec<String>,
}Expand description
Workspace workspace sqlite metadata request or result value. Creating the value does not touch the filesystem; workspace executors document read, write, edit, or search effects.
Fields§
§parser: StringParser or fallback path that produced this metadata.
table_count: usizeCount of table items observed or included in this record.
tables: Vec<WorkspaceSqliteTableMetadata>Bounded tables included in this record. Limits and truncation are represented by companion metadata when applicable.
truncated: boolWhether output was shortened by byte, item, page, archive, or parser limits.
warnings: Vec<String>Non-fatal warnings from bounded readers, parsers, or policy downgrades.
Trait Implementations§
Source§impl Clone for WorkspaceSqliteMetadata
impl Clone for WorkspaceSqliteMetadata
Source§fn clone(&self) -> WorkspaceSqliteMetadata
fn clone(&self) -> WorkspaceSqliteMetadata
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 WorkspaceSqliteMetadata
impl Debug for WorkspaceSqliteMetadata
Source§impl<'de> Deserialize<'de> for WorkspaceSqliteMetadata
impl<'de> Deserialize<'de> for WorkspaceSqliteMetadata
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
Source§impl PartialEq for WorkspaceSqliteMetadata
impl PartialEq for WorkspaceSqliteMetadata
Source§fn eq(&self, other: &WorkspaceSqliteMetadata) -> bool
fn eq(&self, other: &WorkspaceSqliteMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkspaceSqliteMetadata
impl Serialize for WorkspaceSqliteMetadata
impl Eq for WorkspaceSqliteMetadata
impl StructuralPartialEq for WorkspaceSqliteMetadata
Auto Trait Implementations§
impl Freeze for WorkspaceSqliteMetadata
impl RefUnwindSafe for WorkspaceSqliteMetadata
impl Send for WorkspaceSqliteMetadata
impl Sync for WorkspaceSqliteMetadata
impl Unpin for WorkspaceSqliteMetadata
impl UnsafeUnpin for WorkspaceSqliteMetadata
impl UnwindSafe for WorkspaceSqliteMetadata
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.