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