pub struct EventsourcePeriodLogEntry {
pub event_name: Option<String>,
pub event_source_name: Option<String>,
pub event_source_type: Option<String>,
pub level: Option<String>,
pub msg: Option<String>,
pub namespace: Option<String>,
pub time: Option<String>,
}Fields§
§event_name: Option<String>§event_source_name: Option<String>§event_source_type: Option<String>§level: Option<String>§msg: Option<String>§namespace: Option<String>§time: Option<String>Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Implementations§
Source§impl EventsourcePeriodLogEntry
impl EventsourcePeriodLogEntry
pub fn new() -> EventsourcePeriodLogEntry
Trait Implementations§
Source§impl Clone for EventsourcePeriodLogEntry
impl Clone for EventsourcePeriodLogEntry
Source§fn clone(&self) -> EventsourcePeriodLogEntry
fn clone(&self) -> EventsourcePeriodLogEntry
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 EventsourcePeriodLogEntry
impl Debug for EventsourcePeriodLogEntry
Source§impl<'de> Deserialize<'de> for EventsourcePeriodLogEntry
impl<'de> Deserialize<'de> for EventsourcePeriodLogEntry
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
impl StructuralPartialEq for EventsourcePeriodLogEntry
Auto Trait Implementations§
impl Freeze for EventsourcePeriodLogEntry
impl RefUnwindSafe for EventsourcePeriodLogEntry
impl Send for EventsourcePeriodLogEntry
impl Sync for EventsourcePeriodLogEntry
impl Unpin for EventsourcePeriodLogEntry
impl UnwindSafe for EventsourcePeriodLogEntry
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