Enum webrtc_ice::Error

source ·
#[non_exhaustive]
pub enum Error {
Show 65 variants ErrUnknownType, ErrSchemeType, ErrStunQuery, ErrInvalidQuery, ErrHost, ErrPort, ErrLocalUfragInsufficientBits, ErrLocalPwdInsufficientBits, ErrProtoType, ErrClosed, ErrNoCandidatePairs, ErrCanceledByCaller, ErrMultipleStart, ErrRemoteUfragEmpty, ErrRemotePwdEmpty, ErrNoOnCandidateHandler, ErrMultipleGatherAttempted, ErrUsernameEmpty, ErrPasswordEmpty, ErrAddressParseFailed, ErrLiteUsingNonHostCandidates, ErrUselessUrlsProvided, ErrUnsupportedNat1to1IpCandidateType, ErrInvalidNat1to1IpMapping, ErrExternalMappedIpNotFound, ErrMulticastDnsWithNat1to1IpMapping, ErrIneffectiveNat1to1IpMappingHost, ErrIneffectiveNat1to1IpMappingSrflx, ErrInvalidMulticastDnshostName, ErrRestartWhenGathering, ErrRunCanceled, ErrTcpMuxNotInitialized, ErrTcpRemoteAddrAlreadyExists, ErrSendPacket, ErrAttributeTooShortIceCandidate, ErrParseComponent, ErrParsePriority, ErrParsePort, ErrParseRelatedAddr, ErrParseType, ErrUnknownCandidateType, ErrGetXorMappedAddrResponse, ErrConnectionAddrAlreadyExist, ErrReadingStreamingPacket, ErrWriting, ErrClosingConnection, ErrDetermineNetworkType, ErrMissingProtocolScheme, ErrTooManyColonsAddr, ErrRead, ErrUnknownRole, ErrMismatchUsername, ErrIceWriteStunMessage, ErrInvalidUrl, ErrUrlParse, ErrCandidateIpNotFound, ParseInt(ParseIntError), ParseIp(AddrParseError), Io(IoError), Util(Error), Stun(Error), ParseUrl(ParseError), Mdns(Error), Turn(Error), Other(String),
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

ErrUnknownType

Indicates an error with Unknown info.

§

ErrSchemeType

Indicates the scheme type could not be parsed.

§

ErrStunQuery

Indicates query arguments are provided in a STUN URL.

§

ErrInvalidQuery

Indicates an malformed query is provided.

§

ErrHost

Indicates malformed hostname is provided.

§

ErrPort

Indicates malformed port is provided.

§

ErrLocalUfragInsufficientBits

Indicates local username fragment insufficient bits are provided. Have to be at least 24 bits long.

§

ErrLocalPwdInsufficientBits

Indicates local passoword insufficient bits are provided. Have to be at least 128 bits long.

§

ErrProtoType

Indicates an unsupported transport type was provided.

§

ErrClosed

Indicates the agent is closed.

§

ErrNoCandidatePairs

Indicates agent does not have a valid candidate pair.

§

ErrCanceledByCaller

Indicates agent connection was canceled by the caller.

§

ErrMultipleStart

Indicates agent was started twice.

§

ErrRemoteUfragEmpty

Indicates agent was started with an empty remote ufrag.

§

ErrRemotePwdEmpty

Indicates agent was started with an empty remote pwd.

§

ErrNoOnCandidateHandler

Indicates agent was started without on_candidate.

§

ErrMultipleGatherAttempted

Indicates GatherCandidates has been called multiple times.

§

ErrUsernameEmpty

Indicates agent was give TURN URL with an empty Username.

§

ErrPasswordEmpty

Indicates agent was give TURN URL with an empty Password.

§

ErrAddressParseFailed

Indicates we were unable to parse a candidate address.

§

ErrLiteUsingNonHostCandidates

Indicates that non host candidates were selected for a lite agent.

§

ErrUselessUrlsProvided

Indicates that one or more URL was provided to the agent but no host candidate required them.

§

ErrUnsupportedNat1to1IpCandidateType

Indicates that the specified NAT1To1IPCandidateType is unsupported.

§

ErrInvalidNat1to1IpMapping

Indicates that the given 1:1 NAT IP mapping is invalid.

§

ErrExternalMappedIpNotFound

IPNotFound in NAT1To1IPMapping.

§

ErrMulticastDnsWithNat1to1IpMapping

Indicates that the mDNS gathering cannot be used along with 1:1 NAT IP mapping for host candidate.

§

ErrIneffectiveNat1to1IpMappingHost

Indicates that 1:1 NAT IP mapping for host candidate is requested, but the host candidate type is disabled.

§

ErrIneffectiveNat1to1IpMappingSrflx

Indicates that 1:1 NAT IP mapping for srflx candidate is requested, but the srflx candidate type is disabled.

§

ErrInvalidMulticastDnshostName

Indicates an invalid MulticastDNSHostName.

§

ErrRestartWhenGathering

Indicates Restart was called when Agent is in GatheringStateGathering.

§

ErrRunCanceled

Indicates a run operation was canceled by its individual done.

§

ErrTcpMuxNotInitialized

Initialized Indicates TCPMux is not initialized and that invalidTCPMux is used.

§

ErrTcpRemoteAddrAlreadyExists

Indicates we already have the connection with same remote addr.

§

ErrSendPacket

§

ErrAttributeTooShortIceCandidate

§

ErrParseComponent

§

ErrParsePriority

§

ErrParsePort

§

ErrParseRelatedAddr

§

ErrParseType

§

ErrUnknownCandidateType

§

ErrGetXorMappedAddrResponse

§

ErrConnectionAddrAlreadyExist

§

ErrReadingStreamingPacket

§

ErrWriting

§

ErrClosingConnection

§

ErrDetermineNetworkType

§

ErrMissingProtocolScheme

§

ErrTooManyColonsAddr

§

ErrRead

§

ErrUnknownRole

§

ErrMismatchUsername

§

ErrIceWriteStunMessage

§

ErrInvalidUrl

§

ErrUrlParse

§

ErrCandidateIpNotFound

§

ParseInt(ParseIntError)

§

ParseIp(AddrParseError)

§

Io(IoError)

§

Util(Error)

§

Stun(Error)

§

ParseUrl(ParseError)

§

Mdns(Error)

§

Turn(Error)

§

Other(String)

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

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 From<AddrParseError> for Error

source§

fn from(source: AddrParseError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<ParseError> for Error

source§

fn from(source: ParseError) -> Self

Converts to this type from the input type.
source§

impl From<ParseIntError> for Error

source§

fn from(source: ParseIntError) -> Self

Converts to this type from the input type.
source§

impl From<SystemTimeError> for Error

source§

fn from(e: SystemTimeError) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

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> 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> Same for T

§

type Output = T

Should always be Self
source§

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

source§

default 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>,

§

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>,

§

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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V