pub struct ProjectUpdateCreateInput {
pub id: Option<String>,
pub body: Option<String>,
pub body_data: Option<Value>,
pub project_id: Option<String>,
pub health: Option<ProjectUpdateHealthType>,
pub is_diff_hidden: Option<bool>,
}Fields§
§id: Option<String>The identifier. If none is provided, the backend will generate one.
body: Option<String>The content of the project update in markdown format.
body_data: Option<Value>Internal The content of the project update as a Prosemirror document.
project_id: Option<String>The project to associate the project update with.
health: Option<ProjectUpdateHealthType>The health of the project at the time of the update.
Whether the diff between the current update and the previous one should be hidden.
Trait Implementations§
Source§impl Clone for ProjectUpdateCreateInput
impl Clone for ProjectUpdateCreateInput
Source§fn clone(&self) -> ProjectUpdateCreateInput
fn clone(&self) -> ProjectUpdateCreateInput
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 ProjectUpdateCreateInput
impl Debug for ProjectUpdateCreateInput
Source§impl Default for ProjectUpdateCreateInput
impl Default for ProjectUpdateCreateInput
Source§fn default() -> ProjectUpdateCreateInput
fn default() -> ProjectUpdateCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectUpdateCreateInput
impl<'de> Deserialize<'de> for ProjectUpdateCreateInput
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 ProjectUpdateCreateInput
impl RefUnwindSafe for ProjectUpdateCreateInput
impl Send for ProjectUpdateCreateInput
impl Sync for ProjectUpdateCreateInput
impl Unpin for ProjectUpdateCreateInput
impl UnwindSafe for ProjectUpdateCreateInput
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