#[non_exhaustive]pub struct LanguagePref {
pub at_type: Option<String>,
pub language: String,
pub contexts: Option<HashMap<String, bool>>,
pub pref: Option<u32>,
pub extra: Map<String, Value>,
}Expand description
A preferred language (RFC 9553 §2.3.4).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.at_type: Option<String>Object type discriminator; SHOULD be "LanguagePref" when present per RFC 9553 §1.3.4 (may be omitted in defaultType positions).
language: StringBCP 47 language tag.
contexts: Option<HashMap<String, bool>>Contexts in which to use the language (key → true).
pref: Option<u32>Preference order in 1..=100 (lower = more preferred).
extra: Map<String, Value>Catch-all for vendor / site / private extension fields not covered by the typed fields above. Preserves unknown fields across deserialize/serialize round-trip per workspace extras-preservation policy (see workspace AGENTS.md).
Trait Implementations§
Source§impl Clone for LanguagePref
impl Clone for LanguagePref
Source§fn clone(&self) -> LanguagePref
fn clone(&self) -> LanguagePref
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 LanguagePref
impl Debug for LanguagePref
Source§impl<'de> Deserialize<'de> for LanguagePref
impl<'de> Deserialize<'de> for LanguagePref
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
impl Eq for LanguagePref
Source§impl PartialEq for LanguagePref
impl PartialEq for LanguagePref
Source§fn eq(&self, other: &LanguagePref) -> bool
fn eq(&self, other: &LanguagePref) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LanguagePref
impl Serialize for LanguagePref
impl StructuralPartialEq for LanguagePref
Auto Trait Implementations§
impl Freeze for LanguagePref
impl RefUnwindSafe for LanguagePref
impl Send for LanguagePref
impl Sync for LanguagePref
impl Unpin for LanguagePref
impl UnsafeUnpin for LanguagePref
impl UnwindSafe for LanguagePref
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