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