pub struct ChainedBackend { /* private fields */ }Expand description
A backend that chains multiple backends together.
Looks up translations in order; the first backend that returns a result wins. This allows e.g. database overrides to take priority over file-based translations.
Implementations§
Source§impl ChainedBackend
impl ChainedBackend
Trait Implementations§
Source§impl Backend for ChainedBackend
impl Backend for ChainedBackend
Auto Trait Implementations§
impl !RefUnwindSafe for ChainedBackend
impl !UnwindSafe for ChainedBackend
impl Freeze for ChainedBackend
impl Send for ChainedBackend
impl Sync for ChainedBackend
impl Unpin for ChainedBackend
impl UnsafeUnpin for ChainedBackend
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