pub enum ComplexHandshakeError {
DigestLengthNotCorrect,
CannotGenerate,
}
Expand description
Errors that can occur during the complex handshake.
Variants§
Trait Implementations§
Source§impl Debug for ComplexHandshakeError
impl Debug for ComplexHandshakeError
Source§impl Display for ComplexHandshakeError
impl Display for ComplexHandshakeError
Source§impl Error for ComplexHandshakeError
impl Error for ComplexHandshakeError
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<ComplexHandshakeError> for RtmpError
impl From<ComplexHandshakeError> for RtmpError
Source§fn from(source: ComplexHandshakeError) -> Self
fn from(source: ComplexHandshakeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ComplexHandshakeError
impl RefUnwindSafe for ComplexHandshakeError
impl Send for ComplexHandshakeError
impl Sync for ComplexHandshakeError
impl Unpin for ComplexHandshakeError
impl UnwindSafe for ComplexHandshakeError
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