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