Lines Matching defs:message
308 mod message {
316 Diagnostic::error().with_message("a message"),
317 Diagnostic::warning().with_message("a message"),
318 Diagnostic::note().with_message("a message"),
319 Diagnostic::help().with_message("a message"),
342 Diagnostic::error().with_message("a message").with_notes(vec!["a note".to_owned()]),
343 Diagnostic::warning().with_message("a message").with_notes(vec!["a note".to_owned()]),
344 Diagnostic::note().with_message("a message").with_notes(vec!["a note".to_owned()]),
345 Diagnostic::help().with_message("a message").with_notes(vec!["a note".to_owned()]),
368 Diagnostic::error().with_message("a message").with_code("E0001"),
369 Diagnostic::warning().with_message("a message").with_code("W001"),
370 Diagnostic::note().with_message("a message").with_code("N0815"),
371 Diagnostic::help().with_message("a message").with_code("H4711"),