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