pub struct ConfigurationDiagnostic {
pub property_name: String,
pub message: String,
}
Expand description
Represents a problem within the configuration.
Fields§
§property_name: String
The property name the problem occurred on.
message: String
The diagnostic message that should be displayed to the user
Trait Implementations§
source§impl Clone for ConfigurationDiagnostic
impl Clone for ConfigurationDiagnostic
source§fn clone(&self) -> ConfigurationDiagnostic
fn clone(&self) -> ConfigurationDiagnostic
Returns a copy 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 ConfigurationDiagnostic
impl Debug for ConfigurationDiagnostic
source§impl<'de> Deserialize<'de> for ConfigurationDiagnostic
impl<'de> Deserialize<'de> for ConfigurationDiagnostic
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 ConfigurationDiagnostic
impl Display for ConfigurationDiagnostic
source§impl PartialEq for ConfigurationDiagnostic
impl PartialEq for ConfigurationDiagnostic
source§fn eq(&self, other: &ConfigurationDiagnostic) -> bool
fn eq(&self, other: &ConfigurationDiagnostic) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ConfigurationDiagnostic
impl Serialize for ConfigurationDiagnostic
impl Eq for ConfigurationDiagnostic
impl StructuralPartialEq for ConfigurationDiagnostic
Auto Trait Implementations§
impl Freeze for ConfigurationDiagnostic
impl RefUnwindSafe for ConfigurationDiagnostic
impl Send for ConfigurationDiagnostic
impl Sync for ConfigurationDiagnostic
impl Unpin for ConfigurationDiagnostic
impl UnwindSafe for ConfigurationDiagnostic
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.