macro_rules! throw {
($err:expr) => { ... };
() => { ... };
}
Expand description
Throw an error.
This macro is equivalent to Err($err)?
.
macro_rules! throw {
($err:expr) => { ... };
() => { ... };
}
Throw an error.
This macro is equivalent to Err($err)?
.