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