pub struct StoreSchema {
pub format_version: u32,
pub tables: Vec<TableSchema>,
pub indexes: Vec<IndexSchema>,
}Expand description
Projection of the caller-visible schema for a physical store.
Fields§
§format_version: u32Version of this backend-neutral schema description, not the file format.
tables: Vec<TableSchema>§indexes: Vec<IndexSchema>Implementations§
Trait Implementations§
Source§impl Clone for StoreSchema
impl Clone for StoreSchema
Source§fn clone(&self) -> StoreSchema
fn clone(&self) -> StoreSchema
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 StoreSchema
impl Debug for StoreSchema
Source§impl<'de> Deserialize<'de> for StoreSchema
impl<'de> Deserialize<'de> for StoreSchema
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 StoreSchema
impl PartialEq for StoreSchema
Source§impl Serialize for StoreSchema
impl Serialize for StoreSchema
impl StructuralPartialEq for StoreSchema
Auto Trait Implementations§
impl Freeze for StoreSchema
impl RefUnwindSafe for StoreSchema
impl Send for StoreSchema
impl Sync for StoreSchema
impl Unpin for StoreSchema
impl UnsafeUnpin for StoreSchema
impl UnwindSafe for StoreSchema
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