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