Struct google_clouddebugger2::SourceLocation[][src]

pub struct SourceLocation {
    pub path: Option<String>,
    pub line: Option<i32>,
}

Represents a location in the source code.

This type is not used in any activity, and only used as part of another schema.

Fields

Path to the source file within the source context of the target binary.

Line inside the file. The first line in the file has the value 1.

Trait Implementations

impl Default for SourceLocation
[src]

Returns the "default value" for a type. Read more

impl Clone for SourceLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SourceLocation
[src]

Formats the value using the given formatter. Read more

impl Part for SourceLocation
[src]

Auto Trait Implementations