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