pub struct SqliteColumn {
pub column_name: String,
pub dotpath: String,
pub value_type: SqliteValueType,
pub is_keyring: bool,
}Expand description
Flattened column definition for SQLite persistence.
Fields§
§column_name: String§dotpath: String§value_type: SqliteValueType§is_keyring: boolTrait Implementations§
Source§impl Clone for SqliteColumn
impl Clone for SqliteColumn
Source§fn clone(&self) -> SqliteColumn
fn clone(&self) -> SqliteColumn
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 SqliteColumn
impl Debug for SqliteColumn
Source§impl<'de> Deserialize<'de> for SqliteColumn
impl<'de> Deserialize<'de> for SqliteColumn
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 SqliteColumn
impl RefUnwindSafe for SqliteColumn
impl Send for SqliteColumn
impl Sync for SqliteColumn
impl Unpin for SqliteColumn
impl UnsafeUnpin for SqliteColumn
impl UnwindSafe for SqliteColumn
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