pub enum PostlogdEventType {
ConfigOverrideWarning {
file_path: String,
line_number: u32,
parameter: String,
value: String,
},
}Variants§
ConfigOverrideWarning
Configuration override warning
Trait Implementations§
Source§impl Clone for PostlogdEventType
impl Clone for PostlogdEventType
Source§fn clone(&self) -> PostlogdEventType
fn clone(&self) -> PostlogdEventType
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 PostlogdEventType
impl Debug for PostlogdEventType
Source§impl<'de> Deserialize<'de> for PostlogdEventType
impl<'de> Deserialize<'de> for PostlogdEventType
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 Display for PostlogdEventType
impl Display for PostlogdEventType
Source§impl PartialEq for PostlogdEventType
impl PartialEq for PostlogdEventType
Source§impl Serialize for PostlogdEventType
impl Serialize for PostlogdEventType
impl StructuralPartialEq for PostlogdEventType
Auto Trait Implementations§
impl Freeze for PostlogdEventType
impl RefUnwindSafe for PostlogdEventType
impl Send for PostlogdEventType
impl Sync for PostlogdEventType
impl Unpin for PostlogdEventType
impl UnwindSafe for PostlogdEventType
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