pub struct Column {
pub name: Arc<str>,
pub ty: SqlTy,
pub nullable: bool,
}Fields§
§name: Arc<str>§ty: SqlTy§nullable: boolOnly an Option[T] field is nullable. Beck has no null, so this is the one place one comes
from — and a column that is not an Option never holds one.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
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