pub struct ProjectEssentials {
pub id: u64,
pub name: String,
}
Expand description
a minimal type for Redmine projects used in lists of projects included in other Redmine objects (e.g. custom fields)
Fields§
§id: u64
numeric id
name: String
display name
Trait Implementations§
Source§impl Clone for ProjectEssentials
impl Clone for ProjectEssentials
Source§fn clone(&self) -> ProjectEssentials
fn clone(&self) -> ProjectEssentials
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 ProjectEssentials
impl Debug for ProjectEssentials
Source§impl<'de> Deserialize<'de> for ProjectEssentials
impl<'de> Deserialize<'de> for ProjectEssentials
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<&Project> for ProjectEssentials
impl From<&Project> for ProjectEssentials
Source§impl From<Project> for ProjectEssentials
impl From<Project> for ProjectEssentials
Source§impl PartialEq for ProjectEssentials
impl PartialEq for ProjectEssentials
Source§impl Serialize for ProjectEssentials
impl Serialize for ProjectEssentials
impl Eq for ProjectEssentials
impl StructuralPartialEq for ProjectEssentials
Auto Trait Implementations§
impl Freeze for ProjectEssentials
impl RefUnwindSafe for ProjectEssentials
impl Send for ProjectEssentials
impl Sync for ProjectEssentials
impl Unpin for ProjectEssentials
impl UnwindSafe for ProjectEssentials
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