pub struct Lambda {
pub body: Option<String>,
pub debug: Option<bool>,
pub engine_type: Option<LambdaEngineType>,
pub id: Option<Uuid>,
pub insert_instant: Option<i64>,
pub last_update_instant: Option<i64>,
pub name: Option<String>,
pub type: Option<LambdaType>,
}
Expand description
Lambda : A JavaScript lambda function that is executed during certain events inside FusionAuth.
Fields§
§body: Option<String>
§debug: Option<bool>
§engine_type: Option<LambdaEngineType>
§id: Option<Uuid>
§insert_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
last_update_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
name: Option<String>
§type: Option<LambdaType>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Lambda
impl<'de> Deserialize<'de> for Lambda
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 Lambda
Auto Trait Implementations§
impl Freeze for Lambda
impl RefUnwindSafe for Lambda
impl Send for Lambda
impl Sync for Lambda
impl Unpin for Lambda
impl UnwindSafe for Lambda
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