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