pub struct LoggerListing {
pub tree: Value,
pub loggers: Vec<Logger>,
}Expand description
GET /loggers and GET /loggers/{expr} response. The tree
payload is recursive and rarely needed — it is preserved as a raw
JSON value.
Fields§
§tree: ValueRecursive logger tree as raw JSON.
loggers: Vec<Logger>Flat list of registered loggers.
Trait Implementations§
Source§impl Clone for LoggerListing
impl Clone for LoggerListing
Source§fn clone(&self) -> LoggerListing
fn clone(&self) -> LoggerListing
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LoggerListing
impl Debug for LoggerListing
Source§impl<'de> Deserialize<'de> for LoggerListing
impl<'de> Deserialize<'de> for LoggerListing
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 LoggerListing
impl PartialEq for LoggerListing
Source§fn eq(&self, other: &LoggerListing) -> bool
fn eq(&self, other: &LoggerListing) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LoggerListing
impl StructuralPartialEq for LoggerListing
Auto Trait Implementations§
impl Freeze for LoggerListing
impl RefUnwindSafe for LoggerListing
impl Send for LoggerListing
impl Sync for LoggerListing
impl Unpin for LoggerListing
impl UnsafeUnpin for LoggerListing
impl UnwindSafe for LoggerListing
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