Enum webrtc_ice::url::SchemeType
source · [−]pub enum SchemeType {
Stun,
Stuns,
Turn,
Turns,
Unknown,
}
Expand description
The type of server used in the ice.URL structure.
Variants
Stun
The URL represents a STUN server.
Stuns
The URL represents a STUNS (secure) server.
Turn
The URL represents a TURN server.
Turns
The URL represents a TURNS (secure) server.
Unknown
Default public constant to use for “enum” like struct comparisons when no value was defined.
Trait Implementations
sourceimpl Clone for SchemeType
impl Clone for SchemeType
sourcefn clone(&self) -> SchemeType
fn clone(&self) -> SchemeType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SchemeType
impl Debug for SchemeType
sourceimpl Default for SchemeType
impl Default for SchemeType
sourceimpl Display for SchemeType
impl Display for SchemeType
sourceimpl From<&str> for SchemeType
impl From<&str> for SchemeType
sourceimpl PartialEq<SchemeType> for SchemeType
impl PartialEq<SchemeType> for SchemeType
sourcefn eq(&self, other: &SchemeType) -> bool
fn eq(&self, other: &SchemeType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Copy for SchemeType
impl Eq for SchemeType
impl StructuralEq for SchemeType
impl StructuralPartialEq for SchemeType
Auto Trait Implementations
impl RefUnwindSafe for SchemeType
impl Send for SchemeType
impl Sync for SchemeType
impl Unpin for SchemeType
impl UnwindSafe for SchemeType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more