Enum rustc_errors::DiagnosticMessage
source · [−]pub enum DiagnosticMessage {
Str(String),
FluentIdentifier(Cow<'static, str>, Option<Cow<'static, str>>),
}
Expand description
Abstraction over a message in a diagnostic to support both translatable and non-translatable diagnostic messages.
Intended to be removed once diagnostics are entirely translatable.
Variants
Str(String)
Non-translatable diagnostic message.
FluentIdentifier(Cow<'static, str>, Option<Cow<'static, str>>)
Identifier for a Fluent message (with optional attribute) corresponding to the diagnostic message.
https://projectfluent.org/fluent/guide/hello.html https://projectfluent.org/fluent/guide/attributes.html
Auto Trait Implementations
impl RefUnwindSafe for DiagnosticMessage
impl Send for DiagnosticMessage
impl Sync for DiagnosticMessage
impl Unpin for DiagnosticMessage
impl UnwindSafe for DiagnosticMessage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes
Size for each variant:
Str
: 24 bytesFluentIdentifier
: 56 bytes