pub struct RowType {
pub name: String,
pub database: String,
pub schema: String,
pub table: String,
pub precision: Option<u32>,
pub byte_length: Option<usize>,
pub data_type: String,
pub scale: Option<i32>,
pub nullable: bool,
}
Expand description
Fields§
§name: String
§database: String
§schema: String
§table: String
§precision: Option<u32>
§byte_length: Option<usize>
§data_type: String
§scale: Option<i32>
§nullable: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowType
impl<'de> Deserialize<'de> for RowType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RowType
impl RefUnwindSafe for RowType
impl Send for RowType
impl Sync for RowType
impl Unpin for RowType
impl UnwindSafe for RowType
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