pub struct PostgresColumn {
pub name: String,
pub column_type: String,
}Fields§
§name: String§column_type: StringTrait Implementations§
Source§impl Clone for PostgresColumn
impl Clone for PostgresColumn
Source§fn clone(&self) -> PostgresColumn
fn clone(&self) -> PostgresColumn
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 moreSource§impl Debug for PostgresColumn
impl Debug for PostgresColumn
Source§impl<'de> Deserialize<'de> for PostgresColumn
impl<'de> Deserialize<'de> for PostgresColumn
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 PostgresColumn
impl RefUnwindSafe for PostgresColumn
impl Send for PostgresColumn
impl Sync for PostgresColumn
impl Unpin for PostgresColumn
impl UnwindSafe for PostgresColumn
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