pub struct LogSpecification {
pub name: Option<String>,
pub display_name: Option<String>,
pub blob_duration: Option<String>,
}Expand description
Description of logging specification.
Fields§
§name: Option<String>The name of the specification.
display_name: Option<String>The display name of the specification.
blob_duration: Option<String>Duration of the blob.
Implementations§
Trait Implementations§
Source§impl Clone for LogSpecification
impl Clone for LogSpecification
Source§fn clone(&self) -> LogSpecification
fn clone(&self) -> LogSpecification
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 LogSpecification
impl Debug for LogSpecification
Source§impl Default for LogSpecification
impl Default for LogSpecification
Source§fn default() -> LogSpecification
fn default() -> LogSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogSpecification
impl<'de> Deserialize<'de> for LogSpecification
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 LogSpecification
impl PartialEq for LogSpecification
Source§impl Serialize for LogSpecification
impl Serialize for LogSpecification
impl StructuralPartialEq for LogSpecification
Auto Trait Implementations§
impl Freeze for LogSpecification
impl RefUnwindSafe for LogSpecification
impl Send for LogSpecification
impl Sync for LogSpecification
impl Unpin for LogSpecification
impl UnwindSafe for LogSpecification
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