pub enum LogService {
DiagnosticDataCollected(String),
}
Expand description
This registry defines the messages for log service related events
Variants§
DiagnosticDataCollected(String)
This message shall be used to indicate that diagnostic data has been collected due to a client invoking the CollectDiagnosticData
action.
Trait Implementations§
Source§impl Clone for LogService
impl Clone for LogService
Source§fn clone(&self) -> LogService
fn clone(&self) -> LogService
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LogService
impl Debug for LogService
Auto Trait Implementations§
impl Freeze for LogService
impl RefUnwindSafe for LogService
impl Send for LogService
impl Sync for LogService
impl Unpin for LogService
impl UnwindSafe for LogService
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