pub struct DatatableMigration {
pub datatable: String,
pub timestamp: i64,
pub name: String,
pub code_up: String,
pub code_down: Option<String>,
}Fields§
§datatable: String§timestamp: i64§name: String§code_up: String§code_down: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for DatatableMigration
impl Clone for DatatableMigration
Source§fn clone(&self) -> DatatableMigration
fn clone(&self) -> DatatableMigration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DatatableMigration
impl Debug for DatatableMigration
Source§impl Default for DatatableMigration
impl Default for DatatableMigration
Source§fn default() -> DatatableMigration
fn default() -> DatatableMigration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatatableMigration
impl<'de> Deserialize<'de> for DatatableMigration
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
Source§impl PartialEq for DatatableMigration
impl PartialEq for DatatableMigration
Source§fn eq(&self, other: &DatatableMigration) -> bool
fn eq(&self, other: &DatatableMigration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DatatableMigration
impl Serialize for DatatableMigration
impl StructuralPartialEq for DatatableMigration
Auto Trait Implementations§
impl Freeze for DatatableMigration
impl RefUnwindSafe for DatatableMigration
impl Send for DatatableMigration
impl Sync for DatatableMigration
impl Unpin for DatatableMigration
impl UnsafeUnpin for DatatableMigration
impl UnwindSafe for DatatableMigration
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