Struct google_logging2::api::LogEntrySourceLocation [−][src]
pub struct LogEntrySourceLocation {
pub file: Option<String>,
pub function: Option<String>,
pub line: Option<String>,
}Expand description
Additional information about the source code location that produced the log entry.
This type is not used in any activity, and only used as part of another schema.
Fields
file: Option<String>Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name.
function: Option<String>Optional. Human-readable name of the function or method being invoked, with optional context such as the class or package name. This information may be used in contexts such as the logs viewer, where a file and line number are less meaningful. The format can vary by language. For example: qual.if.ied.Class.method (Java), dir/package.func (Go), function (Python).
line: Option<String>Optional. Line within the source file. 1-based; 0 indicates no line number available.
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 LogEntrySourceLocation
impl Send for LogEntrySourceLocation
impl Sync for LogEntrySourceLocation
impl Unpin for LogEntrySourceLocation
impl UnwindSafe for LogEntrySourceLocation
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more