pub struct Location<'a> { /* fields omitted */ }
A struct containing information about the location of a panic.
This structure is created by the location() method of PanicInfo.
use std::panic;
panic::set_hook(Box::new(|panic_info| {
if let Some(location) = panic_info.location() {
println!("panic occured in file '{}' at line {}", location.file(), location.line());
} else {
println!("panic occured but can't get location information...");
}
}));
panic!("Normal panic"); impl<'a> Location<'a>
[src]
fn file(&self) -> &strReturns the name of the source file from which the panic originated.
use std::panic;
panic::set_hook(Box::new(|panic_info| {
if let Some(location) = panic_info.location() {
println!("panic occured in file '{}'", location.file());
} else {
println!("panic occured but can't get location information...");
}
}));
panic!("Normal panic"); fn line(&self) -> u32Returns the line number from which the panic originated.
use std::panic;
panic::set_hook(Box::new(|panic_info| {
if let Some(location) = panic_info.location() {
println!("panic occured at line {}", location.line());
} else {
println!("panic occured but can't get location information...");
}
}));
panic!("Normal panic"); impl<'a> Debug for Location<'a>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/panic/struct.Location.html