pub type Result<T> = Result<T, ParseError>;Expand description
The result type when parsing an IPC string.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ParseError),
}pub type Result<T> = Result<T, ParseError>;The result type when parsing an IPC string.
pub enum Result<T> {
Ok(T),
Err(ParseError),
}