pub struct CloudLoggingEntry {
pub insert_id: Option<String>,
pub log_id: Option<String>,
pub resource_container: Option<String>,
pub timestamp: Option<DateTime<Utc>>,
}Expand description
Metadata taken from a Cloud Logging LogEntry
This type is not used in any activity, and only used as part of another schema.
Fields§
§insert_id: Option<String>A unique identifier for the log entry.
log_id: Option<String>The type of the log (part of log_name. log_name is the resource name of the log to which this log entry belongs). For example: cloudresourcemanager.googleapis.com/activity. Note that this field is not URL-encoded, unlike the LOG_ID field in LogEntry.
resource_container: Option<String>The organization, folder, or project of the monitored resource that produced this log entry.
timestamp: Option<DateTime<Utc>>The time the event described by the log entry occurred.
Trait Implementations§
Source§impl Clone for CloudLoggingEntry
impl Clone for CloudLoggingEntry
Source§fn clone(&self) -> CloudLoggingEntry
fn clone(&self) -> CloudLoggingEntry
Returns a duplicate 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 CloudLoggingEntry
impl Debug for CloudLoggingEntry
Source§impl Default for CloudLoggingEntry
impl Default for CloudLoggingEntry
Source§fn default() -> CloudLoggingEntry
fn default() -> CloudLoggingEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CloudLoggingEntry
impl<'de> Deserialize<'de> for CloudLoggingEntry
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 Serialize for CloudLoggingEntry
impl Serialize for CloudLoggingEntry
impl Part for CloudLoggingEntry
Auto Trait Implementations§
impl Freeze for CloudLoggingEntry
impl RefUnwindSafe for CloudLoggingEntry
impl Send for CloudLoggingEntry
impl Sync for CloudLoggingEntry
impl Unpin for CloudLoggingEntry
impl UnwindSafe for CloudLoggingEntry
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