pub struct Function {Show 14 fields
pub id: String,
pub execute: Vec<String>,
pub name: String,
pub dateCreated: i64,
pub dateUpdated: i64,
pub status: String,
pub runtime: String,
pub deployment: String,
pub vars: Option<HashMap<String, ParamType>>,
pub events: Vec<String>,
pub schedule: String,
pub scheduleNext: i64,
pub schedulePrevious: i64,
pub timeout: i64,
}Fields§
§id: String§execute: Vec<String>§name: String§dateCreated: i64§dateUpdated: i64§status: String§runtime: String§deployment: String§vars: Option<HashMap<String, ParamType>>§events: Vec<String>§schedule: String§scheduleNext: i64§schedulePrevious: i64§timeout: i64Implementations§
Source§impl Function
impl Function
pub fn new( id: String, execute: Vec<String>, name: String, dateCreated: i64, dateUpdated: i64, status: String, runtime: String, deployment: String, vars: Option<HashMap<String, ParamType>>, events: Vec<String>, schedule: String, scheduleNext: i64, schedulePrevious: i64, timeout: i64, ) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Function
impl<'de> Deserialize<'de> for Function
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 Function
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnwindSafe for Function
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