pub struct UserListSummary {
pub id: u64,
pub name: String,
pub resource_url: String,
pub uri: Option<String>,
pub public: Option<bool>,
pub description: Option<String>,
pub date_added: Option<String>,
pub date_changed: Option<String>,
pub extra: ExtraFields,
}Fields§
§id: u64§name: String§resource_url: String§uri: Option<String>§public: Option<bool>§description: Option<String>§date_added: Option<String>§date_changed: Option<String>§extra: ExtraFieldsTrait Implementations§
Source§impl Clone for UserListSummary
impl Clone for UserListSummary
Source§fn clone(&self) -> UserListSummary
fn clone(&self) -> UserListSummary
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 UserListSummary
impl Debug for UserListSummary
Source§impl<'de> Deserialize<'de> for UserListSummary
impl<'de> Deserialize<'de> for UserListSummary
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
Auto Trait Implementations§
impl Freeze for UserListSummary
impl RefUnwindSafe for UserListSummary
impl Send for UserListSummary
impl Sync for UserListSummary
impl Unpin for UserListSummary
impl UnsafeUnpin for UserListSummary
impl UnwindSafe for UserListSummary
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