Skip to main content

RtcError

Struct RtcError 

Source
#[repr(C)]
pub struct RtcError { pub error_type: RtcErrorType, pub message: String, pub error_detail: RtcErrorDetailType, pub has_sctp_cause_code: bool, pub sctp_cause_code: u16, }

Fields§

§error_type: RtcErrorType§message: String§error_detail: RtcErrorDetailType§has_sctp_cause_code: bool§sctp_cause_code: u16

Implementations§

Source§

impl RtcError

Source

pub fn parse(value: &str) -> Option<Self>

Parse the hex-encoded error string the C++ side stuffs into the cxx::Exception “what” message (see webrtc-sys/src/rtc_error.cpp serialize_error). The format is fixed-width:

  bytes 0..8   error_type           (u32 hex)
  bytes 8..16  error_detail         (u32 hex)
  bytes 16..18 has_sctp_cause_code  (u8 hex, 0 or 1)
  bytes 18..22 sctp_cause_code      (u16 hex)
  bytes 22..   message              (raw, not encoded)

Returns None if the input is shorter than the fixed header or the header bytes aren’t valid hex. Discriminants outside the known variants for RtcErrorType / RtcErrorDetailType fall back to None for the affected field instead of being transmuted into the enum (which is instant UB and what nightly’s ptr::copy_nonoverlapping precondition check was firing on).

Source

pub unsafe fn from(value: &str) -> Self

Backwards-compatible wrapper for callers that already trust the input is well-formed.

§Safety

Marked unsafe purely for source-compat with prior callers; the body no longer relies on caller-upheld invariants.

Source

pub fn ok(&self) -> bool

Trait Implementations§

Source§

impl Debug for RtcError

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for RtcError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for RtcError

1.30.0 · Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl ExternType for RtcError

Source§

type Kind = Trivial

Source§

type Id

A type-level representation of the type’s C++ namespace and type name. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.