pub struct AssigneeEssentials {
pub id: u64,
pub name: String,
}
Expand description
a minimal type for Redmine users or groups used in lists of assignees included in other Redmine objects
Fields§
§id: u64
numeric id
name: String
display name
Trait Implementations§
Source§impl Clone for AssigneeEssentials
impl Clone for AssigneeEssentials
Source§fn clone(&self) -> AssigneeEssentials
fn clone(&self) -> AssigneeEssentials
Returns a copy 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 AssigneeEssentials
impl Debug for AssigneeEssentials
Source§impl<'de> Deserialize<'de> for AssigneeEssentials
impl<'de> Deserialize<'de> for AssigneeEssentials
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 From<&Group> for AssigneeEssentials
impl From<&Group> for AssigneeEssentials
Source§impl From<&GroupEssentials> for AssigneeEssentials
impl From<&GroupEssentials> for AssigneeEssentials
Source§fn from(v: &GroupEssentials) -> Self
fn from(v: &GroupEssentials) -> Self
Converts to this type from the input type.
Source§impl From<&UserEssentials> for AssigneeEssentials
impl From<&UserEssentials> for AssigneeEssentials
Source§fn from(v: &UserEssentials) -> Self
fn from(v: &UserEssentials) -> Self
Converts to this type from the input type.
Source§impl From<Group> for AssigneeEssentials
impl From<Group> for AssigneeEssentials
Source§impl From<GroupEssentials> for AssigneeEssentials
impl From<GroupEssentials> for AssigneeEssentials
Source§fn from(v: GroupEssentials) -> Self
fn from(v: GroupEssentials) -> Self
Converts to this type from the input type.
Source§impl From<UserEssentials> for AssigneeEssentials
impl From<UserEssentials> for AssigneeEssentials
Source§fn from(v: UserEssentials) -> Self
fn from(v: UserEssentials) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AssigneeEssentials
impl PartialEq for AssigneeEssentials
Source§impl Serialize for AssigneeEssentials
impl Serialize for AssigneeEssentials
impl Eq for AssigneeEssentials
impl StructuralPartialEq for AssigneeEssentials
Auto Trait Implementations§
impl Freeze for AssigneeEssentials
impl RefUnwindSafe for AssigneeEssentials
impl Send for AssigneeEssentials
impl Sync for AssigneeEssentials
impl Unpin for AssigneeEssentials
impl UnwindSafe for AssigneeEssentials
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