Struct cargo_metadata::CompilerMessage
source · #[non_exhaustive]pub struct CompilerMessage {
pub package_id: PackageId,
pub target: Target,
pub message: Diagnostic,
}
Expand description
Message left by the compiler
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.package_id: PackageId
The package this message belongs to
target: Target
The target this message is aimed at
message: Diagnostic
The message the compiler sent.
Trait Implementations§
source§impl Clone for CompilerMessage
impl Clone for CompilerMessage
source§fn clone(&self) -> CompilerMessage
fn clone(&self) -> CompilerMessage
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 CompilerMessage
impl Debug for CompilerMessage
source§impl<'de> Deserialize<'de> for CompilerMessage
impl<'de> Deserialize<'de> for CompilerMessage
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 CompilerMessage
impl Display for CompilerMessage
source§impl Hash for CompilerMessage
impl Hash for CompilerMessage
source§impl PartialEq<CompilerMessage> for CompilerMessage
impl PartialEq<CompilerMessage> for CompilerMessage
source§fn eq(&self, other: &CompilerMessage) -> bool
fn eq(&self, other: &CompilerMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.