pub type Result = Result<(), Error>;
Expand description
The type returned by Quote::escape
.
This type is used similarly to fmt::Result
in the standard library.
Aliased Type§
enum Result {
Ok(()),
Err(Error),
}
pub type Result = Result<(), Error>;
The type returned by Quote::escape
.
This type is used similarly to fmt::Result
in the standard library.
enum Result {
Ok(()),
Err(Error),
}