Enum rustc_errors::error::TranslateError
source · pub enum TranslateError<'args> {
One {
id: &'args Cow<'args, str>,
args: &'args FluentArgs<'args>,
kind: TranslateErrorKind<'args>,
},
Two {
primary: Box<TranslateError<'args>>,
fallback: Box<TranslateError<'args>>,
},
}
Variants§
Implementations§
source§impl<'args> TranslateError<'args>
impl<'args> TranslateError<'args>
pub fn message( id: &'args Cow<'args, str>, args: &'args FluentArgs<'args> ) -> Self
pub fn primary( id: &'args Cow<'args, str>, args: &'args FluentArgs<'args> ) -> Self
pub fn attribute( id: &'args Cow<'args, str>, args: &'args FluentArgs<'args>, attr: &'args str ) -> Self
pub fn value(id: &'args Cow<'args, str>, args: &'args FluentArgs<'args>) -> Self
pub fn fluent( id: &'args Cow<'args, str>, args: &'args FluentArgs<'args>, errs: Vec<FluentError> ) -> Self
pub fn and(self, fallback: TranslateError<'args>) -> TranslateError<'args>
Trait Implementations§
source§impl<'args> Debug for TranslateError<'args>
impl<'args> Debug for TranslateError<'args>
source§impl Display for TranslateError<'_>
impl Display for TranslateError<'_>
source§impl Error for TranslateError<'_>
impl Error for TranslateError<'_>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<'args> !RefUnwindSafe for TranslateError<'args>
impl<'args> !Send for TranslateError<'args>
impl<'args> !Sync for TranslateError<'args>
impl<'args> Unpin for TranslateError<'args>
impl<'args> !UnwindSafe for TranslateError<'args>
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
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: 48 bytes
Size for each variant:
One
: 48 bytesTwo
: 24 bytes