pub struct ServerlessLog {
pub sid: String,
pub account_sid: String,
pub service_sid: String,
pub environment_sid: String,
pub build_sid: String,
pub deployment_sid: String,
pub function_sid: String,
pub request_sid: String,
pub level: Level,
pub message: String,
pub date_created: String,
pub url: String,
}Expand description
A Serverless Environment Log resource.
Fields§
§sid: String§account_sid: String§service_sid: String§environment_sid: String§build_sid: String§deployment_sid: String§function_sid: String§request_sid: String§level: Level§message: String§date_created: String§url: StringTrait Implementations§
Source§impl Debug for ServerlessLog
impl Debug for ServerlessLog
Source§impl Default for ServerlessLog
impl Default for ServerlessLog
Source§fn default() -> ServerlessLog
fn default() -> ServerlessLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerlessLog
impl<'de> Deserialize<'de> for ServerlessLog
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 ServerlessLog
impl RefUnwindSafe for ServerlessLog
impl Send for ServerlessLog
impl Sync for ServerlessLog
impl Unpin for ServerlessLog
impl UnsafeUnpin for ServerlessLog
impl UnwindSafe for ServerlessLog
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