pub struct Task {
pub id: String,
pub act_id: Option<String>,
pub user_id: Option<String>,
pub name: Option<String>,
pub title: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub modified_at: Option<DateTime<Utc>>,
pub extra: Extra,
}Expand description
An Actor task (a saved, reusable Actor configuration).
Fields§
§id: StringUnique task ID.
act_id: Option<String>ID of the Actor this task runs.
user_id: Option<String>ID of the user who owns the task.
name: Option<String>Technical name of the task.
title: Option<String>Human-readable title.
created_at: Option<DateTime<Utc>>When the task was created.
modified_at: Option<DateTime<Utc>>When the task was last modified.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
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 Task
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnsafeUnpin for Task
impl UnwindSafe for Task
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