pub struct Logging {
pub driver: Option<String>,
pub options: IndexMap<MapKey, Option<StringOrNumber>>,
pub extensions: Extensions,
}
Expand description
Logging configuration for a Service
.
Fields§
§driver: Option<String>
Logging driver for the Service
container.
The default and available values are platform specific.
options: IndexMap<MapKey, Option<StringOrNumber>>
Driver specific options.
extensions: Extensions
Extension values, which are (de)serialized via flattening.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Logging
impl<'de> Deserialize<'de> for Logging
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 Logging
Auto Trait Implementations§
impl Freeze for Logging
impl RefUnwindSafe for Logging
impl Send for Logging
impl Sync for Logging
impl Unpin for Logging
impl UnwindSafe for Logging
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