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