pub struct UpdateProject {
pub key: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub lead: Option<String>,
pub url: Option<String>,
pub assignee_type: Option<String>,
pub avatar_id: Option<u64>,
pub category_id: Option<u64>,
}
Fields§
§key: Option<String>
§name: Option<String>
§description: Option<String>
§lead: Option<String>
§url: Option<String>
§assignee_type: Option<String>
§avatar_id: Option<u64>
§category_id: Option<u64>
Trait Implementations§
Source§impl Debug for UpdateProject
impl Debug for UpdateProject
Source§impl<'de> Deserialize<'de> for UpdateProject
impl<'de> Deserialize<'de> for UpdateProject
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
Auto Trait Implementations§
impl Freeze for UpdateProject
impl RefUnwindSafe for UpdateProject
impl Send for UpdateProject
impl Sync for UpdateProject
impl Unpin for UpdateProject
impl UnwindSafe for UpdateProject
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