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