Struct lambda_extension::LambdaLog
source · 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
sourceimpl<'de> Deserialize<'de> for LambdaLog
impl<'de> Deserialize<'de> for LambdaLog
sourcefn 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 RefUnwindSafe for LambdaLog
impl Send for LambdaLog
impl Sync for LambdaLog
impl Unpin for LambdaLog
impl UnwindSafe for LambdaLog
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more