pub struct DocumentUpdateInput {Show 16 fields
pub title: Option<String>,
pub icon: Option<String>,
pub color: Option<String>,
pub content: Option<String>,
pub project_id: Option<String>,
pub initiative_id: Option<String>,
pub team_id: Option<String>,
pub issue_id: Option<String>,
pub release_id: Option<String>,
pub cycle_id: Option<String>,
pub resource_folder_id: Option<String>,
pub last_applied_template_id: Option<String>,
pub hidden_at: Option<DateTime<Utc>>,
pub sort_order: Option<f64>,
pub trashed: Option<bool>,
pub subscriber_ids: Option<Vec<String>>,
}Fields§
§title: Option<String>§icon: Option<String>§color: Option<String>§content: Option<String>§project_id: Option<String>§initiative_id: Option<String>§team_id: Option<String>§issue_id: Option<String>§release_id: Option<String>§cycle_id: Option<String>§resource_folder_id: Option<String>§last_applied_template_id: Option<String>§sort_order: Option<f64>§trashed: Option<bool>§subscriber_ids: Option<Vec<String>>Trait Implementations§
Source§impl Clone for DocumentUpdateInput
impl Clone for DocumentUpdateInput
Source§fn clone(&self) -> DocumentUpdateInput
fn clone(&self) -> DocumentUpdateInput
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 DocumentUpdateInput
impl Debug for DocumentUpdateInput
Source§impl Default for DocumentUpdateInput
impl Default for DocumentUpdateInput
Source§fn default() -> DocumentUpdateInput
fn default() -> DocumentUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocumentUpdateInput
impl<'de> Deserialize<'de> for DocumentUpdateInput
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 DocumentUpdateInput
impl RefUnwindSafe for DocumentUpdateInput
impl Send for DocumentUpdateInput
impl Sync for DocumentUpdateInput
impl Unpin for DocumentUpdateInput
impl UnwindSafe for DocumentUpdateInput
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