pub struct UserProjects {
pub object: String,
pub data: Vec<UserProjectEntry>,
}Available on crate feature
administration-types only.Expand description
Projects associated with the user, if included.
Fields§
§object: String§data: Vec<UserProjectEntry>Trait Implementations§
Source§impl Clone for UserProjects
impl Clone for UserProjects
Source§fn clone(&self) -> UserProjects
fn clone(&self) -> UserProjects
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 UserProjects
impl Debug for UserProjects
Source§impl<'de> Deserialize<'de> for UserProjects
impl<'de> Deserialize<'de> for UserProjects
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 UserProjects
impl PartialEq for UserProjects
Source§fn eq(&self, other: &UserProjects) -> bool
fn eq(&self, other: &UserProjects) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UserProjects
impl Serialize for UserProjects
impl StructuralPartialEq for UserProjects
Auto Trait Implementations§
impl Freeze for UserProjects
impl RefUnwindSafe for UserProjects
impl Send for UserProjects
impl Sync for UserProjects
impl Unpin for UserProjects
impl UnsafeUnpin for UserProjects
impl UnwindSafe for UserProjects
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