Struct google_logging2::api::LogEntryOperation [−][src]
pub struct LogEntryOperation {
pub first: Option<bool>,
pub id: Option<String>,
pub last: Option<bool>,
pub producer: Option<String>,
}Expand description
Additional information about a potentially long-running operation with which a log entry is associated.
This type is not used in any activity, and only used as part of another schema.
Fields
first: Option<bool>Optional. Set this to True if this is the first log entry in the operation.
id: Option<String>Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
last: Option<bool>Optional. Set this to True if this is the last log entry in the operation.
producer: Option<String>Optional. An arbitrary producer identifier. The combination of id and producer must be globally unique. Examples for producer: “MyDivision.MyBigCompany.com”, “github.com/MyProject/MyApplication”.
Trait Implementations
Returns the “default value” for a type. Read more
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 RefUnwindSafe for LogEntryOperation
impl Send for LogEntryOperation
impl Sync for LogEntryOperation
impl Unpin for LogEntryOperation
impl UnwindSafe for LogEntryOperation
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more