pub struct LanguageProfileItemResource {
pub id: Option<i32>,
pub language: Option<Box<Language>>,
pub allowed: Option<bool>,
}
Fields§
§id: Option<i32>
§language: Option<Box<Language>>
§allowed: Option<bool>
Implementations§
Source§impl LanguageProfileItemResource
impl LanguageProfileItemResource
pub fn new() -> LanguageProfileItemResource
Trait Implementations§
Source§impl Clone for LanguageProfileItemResource
impl Clone for LanguageProfileItemResource
Source§fn clone(&self) -> LanguageProfileItemResource
fn clone(&self) -> LanguageProfileItemResource
Returns a duplicate of the value. Read more
1.0.0 · 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 LanguageProfileItemResource
impl Debug for LanguageProfileItemResource
Source§impl Default for LanguageProfileItemResource
impl Default for LanguageProfileItemResource
Source§fn default() -> LanguageProfileItemResource
fn default() -> LanguageProfileItemResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LanguageProfileItemResource
impl<'de> Deserialize<'de> for LanguageProfileItemResource
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 StructuralPartialEq for LanguageProfileItemResource
Auto Trait Implementations§
impl Freeze for LanguageProfileItemResource
impl RefUnwindSafe for LanguageProfileItemResource
impl Send for LanguageProfileItemResource
impl Sync for LanguageProfileItemResource
impl Unpin for LanguageProfileItemResource
impl UnwindSafe for LanguageProfileItemResource
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