Struct llvm_ir::debugloc::DebugLoc [−][src]
pub struct DebugLoc {
pub line: u32,
pub col: Option<u32>,
pub filename: String,
pub directory: Option<String>,
}Expand description
Describes a “debug location” (source location)
Fields
line: u32The source line number
col: Option<u32>The source column number
Instructions and Terminators have this info (and will have Some
here), while GlobalVariables and Functions do not have this info (and
will have None)
filename: StringThe source filename
directory: Option<String>The source directory, if available
Trait Implementations
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for DebugLoc
impl UnwindSafe for DebugLoc
Blanket Implementations
Mutably borrows from an owned value. Read more