pub struct UpdatedProjectCategory {
pub _self: Option<String>,
pub id: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
}
Expand description
UpdatedProjectCategory : A project category.
Fields§
§_self: Option<String>
The URL of the project category.
id: Option<String>
The ID of the project category.
description: Option<String>
The name of the project category.
name: Option<String>
The description of the project category.
Implementations§
Source§impl UpdatedProjectCategory
impl UpdatedProjectCategory
Sourcepub fn new() -> UpdatedProjectCategory
pub fn new() -> UpdatedProjectCategory
A project category.
Trait Implementations§
Source§impl Clone for UpdatedProjectCategory
impl Clone for UpdatedProjectCategory
Source§fn clone(&self) -> UpdatedProjectCategory
fn clone(&self) -> UpdatedProjectCategory
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 UpdatedProjectCategory
impl Debug for UpdatedProjectCategory
Source§impl<'de> Deserialize<'de> for UpdatedProjectCategory
impl<'de> Deserialize<'de> for UpdatedProjectCategory
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 UpdatedProjectCategory
impl PartialEq for UpdatedProjectCategory
Source§impl Serialize for UpdatedProjectCategory
impl Serialize for UpdatedProjectCategory
impl StructuralPartialEq for UpdatedProjectCategory
Auto Trait Implementations§
impl Freeze for UpdatedProjectCategory
impl RefUnwindSafe for UpdatedProjectCategory
impl Send for UpdatedProjectCategory
impl Sync for UpdatedProjectCategory
impl Unpin for UpdatedProjectCategory
impl UnwindSafe for UpdatedProjectCategory
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