pub struct ConfigValidationWarning {
pub message: String,
pub rule: Option<String>,
pub key: Option<String>,
}Expand description
Represents a config validation warning or error
Fields§
§message: String§rule: Option<String>§key: Option<String>Trait Implementations§
Source§impl Clone for ConfigValidationWarning
impl Clone for ConfigValidationWarning
Source§fn clone(&self) -> ConfigValidationWarning
fn clone(&self) -> ConfigValidationWarning
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 moreAuto Trait Implementations§
impl Freeze for ConfigValidationWarning
impl RefUnwindSafe for ConfigValidationWarning
impl Send for ConfigValidationWarning
impl Sync for ConfigValidationWarning
impl Unpin for ConfigValidationWarning
impl UnsafeUnpin for ConfigValidationWarning
impl UnwindSafe for ConfigValidationWarning
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