pub struct FilteredLogEvent {
pub event_id: Option<String>,
pub ingestion_time: Option<i64>,
pub log_stream_name: Option<String>,
pub message: Option<String>,
pub timestamp: Option<i64>,
}Expand description
Represents a matched event.
Fields§
§event_id: Option<String>The ID of the event.
ingestion_time: Option<i64>The time the event was ingested, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
log_stream_name: Option<String>The name of the log stream to which this event belongs.
message: Option<String>The data contained in the log event.
timestamp: Option<i64>The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
Trait Implementations§
Source§impl Clone for FilteredLogEvent
impl Clone for FilteredLogEvent
Source§fn clone(&self) -> FilteredLogEvent
fn clone(&self) -> FilteredLogEvent
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 FilteredLogEvent
impl Debug for FilteredLogEvent
Source§impl Default for FilteredLogEvent
impl Default for FilteredLogEvent
Source§fn default() -> FilteredLogEvent
fn default() -> FilteredLogEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FilteredLogEvent
impl<'de> Deserialize<'de> for FilteredLogEvent
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 FilteredLogEvent
impl PartialEq for FilteredLogEvent
impl StructuralPartialEq for FilteredLogEvent
Auto Trait Implementations§
impl Freeze for FilteredLogEvent
impl RefUnwindSafe for FilteredLogEvent
impl Send for FilteredLogEvent
impl Sync for FilteredLogEvent
impl Unpin for FilteredLogEvent
impl UnwindSafe for FilteredLogEvent
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