macro_rules! error {
($($args:tt)*) => { ... };
}Expand description
error returns a Err containing an Errno struct tagged with the current file name and line
number.
Use errno! instead if you want an unwrapped, but still tagged, Errno.
macro_rules! error {
($($args:tt)*) => { ... };
}error returns a Err containing an Errno struct tagged with the current file name and line
number.
Use errno! instead if you want an unwrapped, but still tagged, Errno.