pub struct ProjectUpdateRequest {
pub project_base: ProjectBase,
pub custom_fields: Option<Value>,
pub followers: Option<String>,
pub owner: Option<String>,
pub team: Option<String>,
}
Fields§
§project_base: ProjectBase
§custom_fields: Option<Value>
An object where each key is the GID of a custom field and its corresponding value is either an enum GID, string, number, or object (depending on the custom field type). See the custom fields guide for details on creating and updating custom field values.
followers: Option<String>
Create-only. Comma separated string of users. Followers are a subset of members who have opted in to receive “tasks added” notifications for a project.
owner: Option<String>
The current owner of the project, may be null.
team: Option<String>
The team that this project is shared with.
Trait Implementations§
Source§impl Clone for ProjectUpdateRequest
impl Clone for ProjectUpdateRequest
Source§fn clone(&self) -> ProjectUpdateRequest
fn clone(&self) -> ProjectUpdateRequest
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 ProjectUpdateRequest
impl Debug for ProjectUpdateRequest
Source§impl Default for ProjectUpdateRequest
impl Default for ProjectUpdateRequest
Source§fn default() -> ProjectUpdateRequest
fn default() -> ProjectUpdateRequest
Returns the “default value” for a type. Read more
Source§impl Deref for ProjectUpdateRequest
impl Deref for ProjectUpdateRequest
Source§impl DerefMut for ProjectUpdateRequest
impl DerefMut for ProjectUpdateRequest
Source§impl<'de> Deserialize<'de> for ProjectUpdateRequest
impl<'de> Deserialize<'de> for ProjectUpdateRequest
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 Display for ProjectUpdateRequest
impl Display for ProjectUpdateRequest
Auto Trait Implementations§
impl Freeze for ProjectUpdateRequest
impl RefUnwindSafe for ProjectUpdateRequest
impl Send for ProjectUpdateRequest
impl Sync for ProjectUpdateRequest
impl Unpin for ProjectUpdateRequest
impl UnwindSafe for ProjectUpdateRequest
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