pub struct DataspaceColumn {
pub name: String,
pub declared_type: String,
pub loc: Loc,
}Expand description
v2.63.0 — one declared dataspace column: column <name>: <Type>.
The type is kept RAW at parse time (the string the adopter wrote);
the v2.63.0 type-checker resolves it against the closed catalog and
emits axon-T928 on a miss — so ALL schema errors in a declaration
accumulate in one compile, instead of dying at the first bad token.
Fields§
§name: String§declared_type: String§loc: LocTrait Implementations§
Auto Trait Implementations§
impl Freeze for DataspaceColumn
impl RefUnwindSafe for DataspaceColumn
impl Send for DataspaceColumn
impl Sync for DataspaceColumn
impl Unpin for DataspaceColumn
impl UnsafeUnpin for DataspaceColumn
impl UnwindSafe for DataspaceColumn
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