pub type Result<T, E = NtStringError> = Result<T, E>;
Expand description
Central result type of nt-string.
Aliased Type§
pub enum Result<T, E = NtStringError> {
Ok(T),
Err(E),
}
pub type Result<T, E = NtStringError> = Result<T, E>;
Central result type of nt-string.
pub enum Result<T, E = NtStringError> {
Ok(T),
Err(E),
}