pub struct TemplateUpdateInput {
pub name: Option<String>,
pub description: Option<String>,
pub team_id: Option<String>,
pub template_data: Option<Value>,
pub sort_order: Option<f64>,
}Fields§
§name: Option<String>The template name.
description: Option<String>The template description.
team_id: Option<String>The identifier or key of the team associated with the template. If set to null, the template will be shared across all teams.
template_data: Option<Value>The template data as JSON encoded attributes of the type of entity, such as an issue.
sort_order: Option<f64>The position of the template in the templates list.
Trait Implementations§
Source§impl Clone for TemplateUpdateInput
impl Clone for TemplateUpdateInput
Source§fn clone(&self) -> TemplateUpdateInput
fn clone(&self) -> TemplateUpdateInput
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 TemplateUpdateInput
impl Debug for TemplateUpdateInput
Source§impl Default for TemplateUpdateInput
impl Default for TemplateUpdateInput
Source§fn default() -> TemplateUpdateInput
fn default() -> TemplateUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TemplateUpdateInput
impl<'de> Deserialize<'de> for TemplateUpdateInput
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 TemplateUpdateInput
impl RefUnwindSafe for TemplateUpdateInput
impl Send for TemplateUpdateInput
impl Sync for TemplateUpdateInput
impl Unpin for TemplateUpdateInput
impl UnwindSafe for TemplateUpdateInput
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