pub struct DatabaseMigration {
pub proxy_resource: ProxyResource,
pub system_data: Option<SystemData>,
pub properties: Option<DatabaseMigrationProperties>,
}
Expand description
Database Migration Resource.
Fields§
§proxy_resource: ProxyResource
§system_data: Option<SystemData>
§properties: Option<DatabaseMigrationProperties>
Database Migration Resource properties.
Implementations§
Trait Implementations§
source§impl Clone for DatabaseMigration
impl Clone for DatabaseMigration
source§fn clone(&self) -> DatabaseMigration
fn clone(&self) -> DatabaseMigration
Returns a copy 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 DatabaseMigration
impl Debug for DatabaseMigration
source§impl Default for DatabaseMigration
impl Default for DatabaseMigration
source§fn default() -> DatabaseMigration
fn default() -> DatabaseMigration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DatabaseMigration
impl<'de> Deserialize<'de> for DatabaseMigration
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<DatabaseMigration> for DatabaseMigration
impl PartialEq<DatabaseMigration> for DatabaseMigration
source§fn eq(&self, other: &DatabaseMigration) -> bool
fn eq(&self, other: &DatabaseMigration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DatabaseMigration
impl Serialize for DatabaseMigration
impl StructuralPartialEq for DatabaseMigration
Auto Trait Implementations§
impl RefUnwindSafe for DatabaseMigration
impl Send for DatabaseMigration
impl Sync for DatabaseMigration
impl Unpin for DatabaseMigration
impl UnwindSafe for DatabaseMigration
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