pub struct ResolvedColumn {
pub name: String,
pub field_name: String,
pub lang_type: String,
pub full_type: String,
pub neutral_type: String,
pub nullable: bool,
}Expand description
A column with its type resolved to the target language.
Fields§
§name: String§field_name: String§lang_type: String§full_type: String§neutral_type: String§nullable: boolTrait Implementations§
Source§impl Clone for ResolvedColumn
impl Clone for ResolvedColumn
Source§fn clone(&self) -> ResolvedColumn
fn clone(&self) -> ResolvedColumn
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResolvedColumn
impl RefUnwindSafe for ResolvedColumn
impl Send for ResolvedColumn
impl Sync for ResolvedColumn
impl Unpin for ResolvedColumn
impl UnsafeUnpin for ResolvedColumn
impl UnwindSafe for ResolvedColumn
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