Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct ConfigDiagnostic {
pub level: DiagnosticLevel,
pub code: String,
pub component: Option<String>,
pub field: Option<String>,
pub message: String,
}
One validation or compatibility diagnostic.
level: DiagnosticLevelSeverity level for the diagnostic.
code: StringStable diagnostic code suitable for machine checks.
component: Option<String>Optional component identifier associated with the diagnostic.
field: Option<String>Optional field path associated with the diagnostic.
message: StringHuman-readable diagnostic message.
impl Clone for ConfigDiagnosticimpl Clone for ConfigDiagnostic
clonefn clone(&self) -> ConfigDiagnostic
clone_fromfn clone_from(&mut self, source: &Self)
impl Debug for ConfigDiagnosticimpl Debug for ConfigDiagnostic
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for ConfigDiagnosticimpl<'de> Deserialize<'de> for ConfigDiagnostic
deserializefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Serialize for ConfigDiagnosticimpl Serialize for ConfigDiagnostic
serializefn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,