pub struct Routine {
pub id: String,
pub workspace_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub schedule: Option<HashMap<String, Value>>,
pub status: Option<String>,
pub metadata: Option<HashMap<String, Value>>,
pub created_at: Option<DateTime<FixedOffset>>,
pub updated_at: Option<DateTime<FixedOffset>>,
}Fields§
§id: String§workspace_id: Option<String>§name: Option<String>§description: Option<String>§schedule: Option<HashMap<String, Value>>§status: Option<String>§metadata: Option<HashMap<String, Value>>§created_at: Option<DateTime<FixedOffset>>§updated_at: Option<DateTime<FixedOffset>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Routine
impl<'de> Deserialize<'de> for Routine
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
impl StructuralPartialEq for Routine
Auto Trait Implementations§
impl Freeze for Routine
impl RefUnwindSafe for Routine
impl Send for Routine
impl Sync for Routine
impl Unpin for Routine
impl UnsafeUnpin for Routine
impl UnwindSafe for Routine
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