pub enum SentryTunnelError {
InvalidEncoding,
EmptyEnvelope,
InvalidHeader(String),
MissingDsn,
InvalidDsnUrl(String),
InvalidHostname(String),
InvalidProjectId(String),
TunnelError(String),
}Variants§
InvalidEncoding
EmptyEnvelope
InvalidHeader(String)
MissingDsn
InvalidDsnUrl(String)
InvalidHostname(String)
InvalidProjectId(String)
TunnelError(String)
Trait Implementations§
Source§impl Debug for SentryTunnelError
impl Debug for SentryTunnelError
Source§impl Display for SentryTunnelError
impl Display for SentryTunnelError
Source§impl Error for SentryTunnelError
impl Error for SentryTunnelError
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 IntoResponse for SentryTunnelError
Available on crate feature extension only.
impl IntoResponse for SentryTunnelError
Available on crate feature
extension only.Source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl Freeze for SentryTunnelError
impl RefUnwindSafe for SentryTunnelError
impl Send for SentryTunnelError
impl Sync for SentryTunnelError
impl Unpin for SentryTunnelError
impl UnwindSafe for SentryTunnelError
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