Struct clingo_sys::clingo_location [] [src]

#[repr(C)]
pub struct clingo_location { pub begin_file: *const c_char, pub end_file: *const c_char, pub begin_line: usize, pub end_line: usize, pub begin_column: usize, pub end_column: usize, }

Represents a source code location marking its beginnig and end.

Note: Not all locations refer to physical files. By convention, such locations use a name put in angular brackets as filename.

Fields

< the file where the location begins

< the file where the location ends

< the line where the location begins

< the line where the location ends

< the column where the location begins

< the column where the location ends

Trait Implementations

impl Debug for clingo_location
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for clingo_location
[src]

impl Clone for clingo_location
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations