pub struct TranslationState {
pub languages: Vec<String>,
pub span: Option<Span>,
}Expand description
Translation language selection. Locale/catalog data is intentionally not represented here.
Fields§
§languages: Vec<String>§span: Option<Span>Trait Implementations§
Source§impl Clone for TranslationState
impl Clone for TranslationState
Source§fn clone(&self) -> TranslationState
fn clone(&self) -> TranslationState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TranslationState
impl Debug for TranslationState
Source§impl<'de> Deserialize<'de> for TranslationState
impl<'de> Deserialize<'de> for TranslationState
Source§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
Source§impl PartialEq for TranslationState
impl PartialEq for TranslationState
Source§impl Serialize for TranslationState
impl Serialize for TranslationState
impl StructuralPartialEq for TranslationState
Auto Trait Implementations§
impl Freeze for TranslationState
impl RefUnwindSafe for TranslationState
impl Send for TranslationState
impl Sync for TranslationState
impl Unpin for TranslationState
impl UnsafeUnpin for TranslationState
impl UnwindSafe for TranslationState
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