pub struct TransientLogEvent {
pub level: LogLevel,
pub uuid: Uuid,
pub status: TransientLogEventStatus,
pub namespace: String,
}Fields§
§level: LogLevel§uuid: Uuid§status: TransientLogEventStatus§namespace: StringImplementations§
Source§impl TransientLogEvent
impl TransientLogEvent
pub fn pending_info( uuid: Uuid, summary: impl ToString, message: impl ToString, namespace: impl ToString, ) -> Self
pub fn success_info( uuid: Uuid, summary: impl ToString, message: impl ToString, namespace: impl ToString, ) -> Self
pub fn failure_info( uuid: Uuid, summary: impl ToString, message: impl ToString, namespace: impl ToString, ) -> Self
Trait Implementations§
Source§impl Clone for TransientLogEvent
impl Clone for TransientLogEvent
Source§fn clone(&self) -> TransientLogEvent
fn clone(&self) -> TransientLogEvent
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 TransientLogEvent
impl Debug for TransientLogEvent
Source§impl<'de> Deserialize<'de> for TransientLogEvent
impl<'de> Deserialize<'de> for TransientLogEvent
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 TransientLogEvent
impl RefUnwindSafe for TransientLogEvent
impl Send for TransientLogEvent
impl Sync for TransientLogEvent
impl Unpin for TransientLogEvent
impl UnwindSafe for TransientLogEvent
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