#[non_exhaustive]pub struct WarningInfo {
pub code: String,
pub message: String,
pub hint: Option<String>,
}Expand description
One non-fatal warning as every frontend reports it.
code is a stable SCREAMING_SNAKE string (an OpsCode wire string or a
crate-specific warning code such as LAYOUT_CACHE_DROPPED), message is
human-readable, and hint is an optional recovery suggestion. The struct
is #[non_exhaustive]; build it with WarningInfo::new.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code: StringStable warning code.
message: StringHuman-readable description.
hint: Option<String>Optional recovery hint.
Implementations§
Trait Implementations§
Source§impl Clone for WarningInfo
impl Clone for WarningInfo
Source§impl Debug for WarningInfo
impl Debug for WarningInfo
Source§impl<'de> Deserialize<'de> for WarningInfo
impl<'de> Deserialize<'de> for WarningInfo
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
impl Eq for WarningInfo
Source§impl JsonSchema for WarningInfo
impl JsonSchema for WarningInfo
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for WarningInfo
impl PartialEq for WarningInfo
Source§impl Serialize for WarningInfo
impl Serialize for WarningInfo
impl StructuralPartialEq for WarningInfo
Auto Trait Implementations§
impl Freeze for WarningInfo
impl RefUnwindSafe for WarningInfo
impl Send for WarningInfo
impl Sync for WarningInfo
impl Unpin for WarningInfo
impl UnsafeUnpin for WarningInfo
impl UnwindSafe for WarningInfo
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.