pub enum Error {
MissingHeader(String),
InvalidParam(String),
ParseError(String),
TokenizeError(String),
Utf8Error(String),
Unexpected(String),
}
Expand description
The Error
enum indicates that something went wrong
It has 6 variants:
MissingHeader
that a header that is expected to be found was completely missing. There are some headers that are required everywhere in SIP, likeFrom
,To
etc.InvalidParam
means some header parser did not succeed, and the reason for it is a missing or invalid parameter. InnerString
should have the nom verbose error about it.ParseError
indicates a general parsing error. InnerString
should have the verbose nom error giving hints on what went wrong.TokenizeError
indicates a general tokenizer error. InnerString
should have the verbose nom error giving hints on what went wrong. A Tokenizer just tries to break thebytes
into parts/components of rsip structs, but never tries to parse/convert to a specific type. So if a tokenizer fails and you get this error, it means it couldn’t even manage to break the SIP message in the correct breakpoints.Utf8Error
indicates that thefrom_utf8
std method completely failed. At least you should get the information regarding which header had this issue.Unexpected
indicates any other error.
Variants§
MissingHeader(String)
InvalidParam(String)
ParseError(String)
TokenizeError(String)
Utf8Error(String)
Unexpected(String)
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Err<TokenizerError>> for Error
impl From<Err<TokenizerError>> for Error
Source§fn from(from: Err<TokenizerError>) -> Self
fn from(from: Err<TokenizerError>) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(error: ParseIntError) -> Self
fn from(error: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl From<TokenizerError> for Error
impl From<TokenizerError> for Error
Source§fn from(from: TokenizerError) -> Self
fn from(from: TokenizerError) -> Self
Converts to this type from the input type.
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more