pub struct SchemaObject {
pub kind: SchemaObjectKind,
pub name: &'static str,
}Expand description
One exact main.sqlite_schema object name owned by a domain.
Names are the eligibility boundary, not merely documentation: any object using one of these names makes an unledgered domain non-fresh, including an object of the wrong kind. The expected kind is retained for validation and health-visible diagnostics.
Fields§
§kind: SchemaObjectKind§name: &'static strTrait Implementations§
Source§impl Clone for SchemaObject
impl Clone for SchemaObject
Source§fn clone(&self) -> SchemaObject
fn clone(&self) -> SchemaObject
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 moreimpl Copy for SchemaObject
Source§impl Debug for SchemaObject
impl Debug for SchemaObject
impl Eq for SchemaObject
Source§impl PartialEq for SchemaObject
impl PartialEq for SchemaObject
impl StructuralPartialEq for SchemaObject
Auto Trait Implementations§
impl Freeze for SchemaObject
impl RefUnwindSafe for SchemaObject
impl Send for SchemaObject
impl Sync for SchemaObject
impl Unpin for SchemaObject
impl UnsafeUnpin for SchemaObject
impl UnwindSafe for SchemaObject
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