pub struct ElasticPoolLog {
pub id: Option<i64>,
pub level: Option<Level>,
pub message: Option<String>,
pub operation: Option<Operation>,
pub pool_id: Option<i32>,
pub timestamp: Option<OffsetDateTime>,
}Expand description
Log data for an Elastic Pool
Fields§
§id: Option<i64>Log Id
level: Option<Level>E.g. error, warning, info
message: Option<String>Log contents
operation: Option<Operation>Operation that triggered the message being logged
pool_id: Option<i32>Id of the associated TaskAgentPool
timestamp: Option<OffsetDateTime>Datetime that the log occurred
Implementations§
Trait Implementations§
source§impl Clone for ElasticPoolLog
impl Clone for ElasticPoolLog
source§fn clone(&self) -> ElasticPoolLog
fn clone(&self) -> ElasticPoolLog
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ElasticPoolLog
impl Debug for ElasticPoolLog
source§impl Default for ElasticPoolLog
impl Default for ElasticPoolLog
source§fn default() -> ElasticPoolLog
fn default() -> ElasticPoolLog
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ElasticPoolLog
impl<'de> Deserialize<'de> for ElasticPoolLog
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
source§impl PartialEq<ElasticPoolLog> for ElasticPoolLog
impl PartialEq<ElasticPoolLog> for ElasticPoolLog
source§fn eq(&self, other: &ElasticPoolLog) -> bool
fn eq(&self, other: &ElasticPoolLog) -> bool
This method tests for
self and other values to be equal, and is used
by ==.