pub struct IngestSettings {
pub infer_ip: Option<InferIp>,
pub infer_user_agent: Option<InferUserAgent>,
}Expand description
Span ingestion settings.
See also: ContainerMetadata::ingest_settings.
Fields§
§infer_ip: Option<InferIp>Controls how and if the client IP address should be inferred.
infer_user_agent: Option<InferUserAgent>Controls how and if the user agent should be inferred.
Trait Implementations§
Source§impl Clone for IngestSettings
impl Clone for IngestSettings
Source§fn clone(&self) -> IngestSettings
fn clone(&self) -> IngestSettings
Returns a duplicate of the value. Read more
1.0.0 · 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 IngestSettings
impl Debug for IngestSettings
Source§impl<'de> Deserialize<'de> for IngestSettings
impl<'de> Deserialize<'de> for IngestSettings
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
Auto Trait Implementations§
impl Freeze for IngestSettings
impl RefUnwindSafe for IngestSettings
impl Send for IngestSettings
impl Sync for IngestSettings
impl Unpin for IngestSettings
impl UnsafeUnpin for IngestSettings
impl UnwindSafe for IngestSettings
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