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