pub struct ProjectUpdateUpdateInput {
pub body: Option<String>,
pub body_data: Option<Value>,
pub health: Option<ProjectUpdateHealthType>,
pub is_diff_hidden: Option<bool>,
}Fields§
§body: Option<String>The content of the project update in markdown format.
body_data: Option<Value>The content of the project update as a Prosemirror document.
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 ProjectUpdateUpdateInput
impl Clone for ProjectUpdateUpdateInput
Source§fn clone(&self) -> ProjectUpdateUpdateInput
fn clone(&self) -> ProjectUpdateUpdateInput
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 ProjectUpdateUpdateInput
impl Debug for ProjectUpdateUpdateInput
Source§impl Default for ProjectUpdateUpdateInput
impl Default for ProjectUpdateUpdateInput
Source§fn default() -> ProjectUpdateUpdateInput
fn default() -> ProjectUpdateUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectUpdateUpdateInput
impl<'de> Deserialize<'de> for ProjectUpdateUpdateInput
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 ProjectUpdateUpdateInput
impl RefUnwindSafe for ProjectUpdateUpdateInput
impl Send for ProjectUpdateUpdateInput
impl Sync for ProjectUpdateUpdateInput
impl Unpin for ProjectUpdateUpdateInput
impl UnwindSafe for ProjectUpdateUpdateInput
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