pub struct ColSpec {
pub ksname: Option<CString>,
pub tablename: Option<CString>,
pub name: CString,
pub col_type: ColTypeOption,
}Expand description
Single column specification.
Fields§
§ksname: Option<CString>The initial
tablename: Option<CString>The initial
name: CStringColumn name
col_type: ColTypeOptionColumn type defined in spec in 4.2.5.2
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ColSpec
impl RefUnwindSafe for ColSpec
impl Send for ColSpec
impl Sync for ColSpec
impl Unpin for ColSpec
impl UnwindSafe for ColSpec
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