pub struct GatewayGetMigration {
pub json: Option<bool>,
pub name: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
GatewayGetMigration : gatewayGetMigration is a command that get migration
Fields§
§json: Option<bool>Set output format to JSON
name: Option<String>Migration name to display
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 GatewayGetMigration
impl GatewayGetMigration
Sourcepub fn new() -> GatewayGetMigration
pub fn new() -> GatewayGetMigration
gatewayGetMigration is a command that get migration
Trait Implementations§
Source§impl Clone for GatewayGetMigration
impl Clone for GatewayGetMigration
Source§fn clone(&self) -> GatewayGetMigration
fn clone(&self) -> GatewayGetMigration
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 GatewayGetMigration
impl Debug for GatewayGetMigration
Source§impl Default for GatewayGetMigration
impl Default for GatewayGetMigration
Source§fn default() -> GatewayGetMigration
fn default() -> GatewayGetMigration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayGetMigration
impl<'de> Deserialize<'de> for GatewayGetMigration
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 GatewayGetMigration
impl PartialEq for GatewayGetMigration
Source§fn eq(&self, other: &GatewayGetMigration) -> bool
fn eq(&self, other: &GatewayGetMigration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GatewayGetMigration
impl Serialize for GatewayGetMigration
impl StructuralPartialEq for GatewayGetMigration
Auto Trait Implementations§
impl Freeze for GatewayGetMigration
impl RefUnwindSafe for GatewayGetMigration
impl Send for GatewayGetMigration
impl Sync for GatewayGetMigration
impl Unpin for GatewayGetMigration
impl UnsafeUnpin for GatewayGetMigration
impl UnwindSafe for GatewayGetMigration
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