Struct google_clouddebugger2::SourceLocation[][src]

pub struct SourceLocation {
    pub column: Option<i32>,
    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

Column within a line. The first column in a line as the value 1. Agents that do not support setting breakpoints on specific columns ignore this field.

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