Enum cargo_metadata::Message [−][src]
#[non_exhaustive]
pub enum Message {
CompilerArtifact(Artifact),
CompilerMessage(CompilerMessage),
BuildScriptExecuted(BuildScript),
BuildFinished(BuildFinished),
TextLine(String),
}
Expand description
A cargo message
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CompilerArtifact(Artifact)
Tuple Fields
0: Artifact
The compiler generated an artifact
CompilerMessage(CompilerMessage)
Tuple Fields
The compiler wants to display a message
BuildScriptExecuted(BuildScript)
Tuple Fields
0: BuildScript
A build script successfully executed.
BuildFinished(BuildFinished)
Tuple Fields
The build has finished.
This is emitted at the end of the build as the last message. Added in Rust 1.44.
TextLine(String)
Tuple Fields
0: String
A line of text which isn’t a cargo or compiler message. Line separator is not included
Implementations
pub fn parse_stream<R: BufRead>(input: R) -> MessageIter<R>ⓘNotable traits for MessageIter<R>impl<R: BufRead> Iterator for MessageIter<R> type Item = Result<Message>;
pub fn parse_stream<R: BufRead>(input: R) -> MessageIter<R>ⓘNotable traits for MessageIter<R>impl<R: BufRead> Iterator for MessageIter<R> type Item = Result<Message>;
Notable traits for MessageIter<R>
impl<R: BufRead> Iterator for MessageIter<R> type Item = Result<Message>;
Creates an iterator of Message from a Read outputting a stream of JSON messages. For usage information, look at the top-level documentation.
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for Message
impl UnwindSafe for Message
Blanket Implementations
Mutably borrows from an owned value. Read more