pub struct GatewayDeleteMigration {
pub id: String,
pub json: Option<bool>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
GatewayDeleteMigration : gatewayDeleteMigration is a command that delete migration
Fields§
§id: StringMigration ID
json: Option<bool>Set output format to JSON
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl GatewayDeleteMigration
impl GatewayDeleteMigration
Sourcepub fn new(id: String) -> GatewayDeleteMigration
pub fn new(id: String) -> GatewayDeleteMigration
gatewayDeleteMigration is a command that delete migration
Trait Implementations§
Source§impl Clone for GatewayDeleteMigration
impl Clone for GatewayDeleteMigration
Source§fn clone(&self) -> GatewayDeleteMigration
fn clone(&self) -> GatewayDeleteMigration
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 GatewayDeleteMigration
impl Debug for GatewayDeleteMigration
Source§impl Default for GatewayDeleteMigration
impl Default for GatewayDeleteMigration
Source§fn default() -> GatewayDeleteMigration
fn default() -> GatewayDeleteMigration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayDeleteMigration
impl<'de> Deserialize<'de> for GatewayDeleteMigration
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 GatewayDeleteMigration
impl PartialEq for GatewayDeleteMigration
Source§fn eq(&self, other: &GatewayDeleteMigration) -> bool
fn eq(&self, other: &GatewayDeleteMigration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GatewayDeleteMigration
impl Serialize for GatewayDeleteMigration
impl StructuralPartialEq for GatewayDeleteMigration
Auto Trait Implementations§
impl Freeze for GatewayDeleteMigration
impl RefUnwindSafe for GatewayDeleteMigration
impl Send for GatewayDeleteMigration
impl Sync for GatewayDeleteMigration
impl Unpin for GatewayDeleteMigration
impl UnsafeUnpin for GatewayDeleteMigration
impl UnwindSafe for GatewayDeleteMigration
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