pub struct LambdaLog {
pub time: DateTime<Utc>,
pub record: LambdaLogRecord,
}
Expand description
Payload received from the Lambda Logs API See: https://docs.aws.amazon.com/lambda/latest/dg/runtimes-logs-api.html#runtimes-logs-api-msg
Fields§
§time: DateTime<Utc>
Time when the log was generated
record: LambdaLogRecord
Log record entry
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LambdaLog
impl<'de> Deserialize<'de> for LambdaLog
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 LambdaLog
Auto Trait Implementations§
impl Freeze for LambdaLog
impl RefUnwindSafe for LambdaLog
impl Send for LambdaLog
impl Sync for LambdaLog
impl Unpin for LambdaLog
impl UnwindSafe for LambdaLog
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