pub struct NestedUser {
pub id: Option<i32>,
pub url: Option<String>,
pub display_url: Option<String>,
pub display: Option<String>,
pub username: String,
}Expand description
NestedUser : Represents an object related through a ForeignKey field. On write, it accepts a primary key (PK) value or a dictionary of attributes which can be used to uniquely identify the related object. This class should be subclassed to return a full representation of the related object on read.
Fields§
§id: Option<i32>§url: Option<String>§display_url: Option<String>§display: Option<String>§username: StringRequired. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
Implementations§
Source§impl NestedUser
impl NestedUser
Sourcepub fn new(username: String) -> NestedUser
pub fn new(username: String) -> NestedUser
Represents an object related through a ForeignKey field. On write, it accepts a primary key (PK) value or a dictionary of attributes which can be used to uniquely identify the related object. This class should be subclassed to return a full representation of the related object on read.
Trait Implementations§
Source§impl Clone for NestedUser
impl Clone for NestedUser
Source§fn clone(&self) -> NestedUser
fn clone(&self) -> NestedUser
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 NestedUser
impl Debug for NestedUser
Source§impl Default for NestedUser
impl Default for NestedUser
Source§fn default() -> NestedUser
fn default() -> NestedUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NestedUser
impl<'de> Deserialize<'de> for NestedUser
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 NestedUser
impl PartialEq for NestedUser
Source§impl Serialize for NestedUser
impl Serialize for NestedUser
impl StructuralPartialEq for NestedUser
Auto Trait Implementations§
impl Freeze for NestedUser
impl RefUnwindSafe for NestedUser
impl Send for NestedUser
impl Sync for NestedUser
impl Unpin for NestedUser
impl UnwindSafe for NestedUser
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