pub struct TaskTemplateResponse {
pub task_template_base: TaskTemplateBase,
pub created_at: Option<DateTime<Utc>>,
pub created_by: Option<UserCompact>,
pub name: Option<String>,
pub project: Option<ProjectCompact>,
pub template: Option<TaskTemplateRecipe>,
}
Fields§
§task_template_base: TaskTemplateBase
§created_at: Option<DateTime<Utc>>
The time at which this task template was created.
created_by: Option<UserCompact>
The user who created this task template.
name: Option<String>
Name of the task template.
project: Option<ProjectCompact>
The project that this task template belongs to.
template: Option<TaskTemplateRecipe>
The configuration for the task that will be created from this template.
Trait Implementations§
Source§impl Clone for TaskTemplateResponse
impl Clone for TaskTemplateResponse
Source§fn clone(&self) -> TaskTemplateResponse
fn clone(&self) -> TaskTemplateResponse
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 TaskTemplateResponse
impl Debug for TaskTemplateResponse
Source§impl Default for TaskTemplateResponse
impl Default for TaskTemplateResponse
Source§fn default() -> TaskTemplateResponse
fn default() -> TaskTemplateResponse
Returns the “default value” for a type. Read more
Source§impl Deref for TaskTemplateResponse
impl Deref for TaskTemplateResponse
Source§impl DerefMut for TaskTemplateResponse
impl DerefMut for TaskTemplateResponse
Source§impl<'de> Deserialize<'de> for TaskTemplateResponse
impl<'de> Deserialize<'de> for TaskTemplateResponse
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
Source§impl Display for TaskTemplateResponse
impl Display for TaskTemplateResponse
Auto Trait Implementations§
impl Freeze for TaskTemplateResponse
impl RefUnwindSafe for TaskTemplateResponse
impl Send for TaskTemplateResponse
impl Sync for TaskTemplateResponse
impl Unpin for TaskTemplateResponse
impl UnwindSafe for TaskTemplateResponse
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