pub struct InitiativeUpdate {Show 17 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub body: Option<String>,
pub edited_at: Option<DateTime<Utc>>,
pub reaction_data: Option<Value>,
pub body_data: Option<String>,
pub slug_id: Option<String>,
pub health: Option<InitiativeUpdateHealthType>,
pub info_snapshot: Option<Value>,
pub is_diff_hidden: Option<bool>,
pub url: Option<String>,
pub is_stale: Option<bool>,
pub diff: Option<Value>,
pub diff_markdown: Option<String>,
pub comment_count: Option<i64>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§body: Option<String>§edited_at: Option<DateTime<Utc>>§reaction_data: Option<Value>§body_data: Option<String>§slug_id: Option<String>§health: Option<InitiativeUpdateHealthType>§info_snapshot: Option<Value>§url: Option<String>§is_stale: Option<bool>§diff: Option<Value>§diff_markdown: Option<String>§comment_count: Option<i64>Trait Implementations§
Source§impl Clone for InitiativeUpdate
impl Clone for InitiativeUpdate
Source§fn clone(&self) -> InitiativeUpdate
fn clone(&self) -> InitiativeUpdate
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 InitiativeUpdate
impl Debug for InitiativeUpdate
Source§impl Default for InitiativeUpdate
impl Default for InitiativeUpdate
Source§fn default() -> InitiativeUpdate
fn default() -> InitiativeUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InitiativeUpdatewhere
InitiativeUpdate: Default,
impl<'de> Deserialize<'de> for InitiativeUpdatewhere
InitiativeUpdate: Default,
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 InitiativeUpdate
impl RefUnwindSafe for InitiativeUpdate
impl Send for InitiativeUpdate
impl Sync for InitiativeUpdate
impl Unpin for InitiativeUpdate
impl UnwindSafe for InitiativeUpdate
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