#[repr(u8)]pub enum IceCandidateType {
Host = 0,
}
Expand description
The enum IceCandidateType
in the namespace FBS.WebRtcTransport
Generated from these locations:
- Enum
IceCandidateType
in the filefbs/webRtcTransport.fbs:67
Variants§
Host = 0
The variant HOST
in the enum IceCandidateType
Implementations§
Source§impl IceCandidateType
impl IceCandidateType
Sourcepub const ENUM_VALUES: [Self; 1]
pub const ENUM_VALUES: [Self; 1]
Array containing all valid variants of IceCandidateType
Trait Implementations§
Source§impl Clone for IceCandidateType
impl Clone for IceCandidateType
Source§fn clone(&self) -> IceCandidateType
fn clone(&self) -> IceCandidateType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IceCandidateType
impl Debug for IceCandidateType
Source§impl<'de> Deserialize<'de> for IceCandidateType
impl<'de> Deserialize<'de> for IceCandidateType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<IceCandidateType> for u8
impl From<IceCandidateType> for u8
Source§fn from(value: IceCandidateType) -> Self
fn from(value: IceCandidateType) -> Self
Converts to this type from the input type.
Source§impl Hash for IceCandidateType
impl Hash for IceCandidateType
Source§impl Ord for IceCandidateType
impl Ord for IceCandidateType
Source§fn cmp(&self, other: &IceCandidateType) -> Ordering
fn cmp(&self, other: &IceCandidateType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IceCandidateType
impl PartialEq for IceCandidateType
Source§impl PartialOrd for IceCandidateType
impl PartialOrd for IceCandidateType
Source§impl Serialize for IceCandidateType
impl Serialize for IceCandidateType
Source§impl TryFrom<u8> for IceCandidateType
impl TryFrom<u8> for IceCandidateType
Source§type Error = UnknownEnumTagKind
type Error = UnknownEnumTagKind
The type returned in the event of a conversion error.
impl Copy for IceCandidateType
impl Eq for IceCandidateType
impl StructuralPartialEq for IceCandidateType
impl VectorWrite<IceCandidateType> for IceCandidateType
impl WriteAs<IceCandidateType> for IceCandidateType
impl WriteAsDefault<IceCandidateType, IceCandidateType> for IceCandidateType
impl WriteAsOptional<IceCandidateType> for IceCandidateType
Auto Trait Implementations§
impl Freeze for IceCandidateType
impl RefUnwindSafe for IceCandidateType
impl Send for IceCandidateType
impl Sync for IceCandidateType
impl Unpin for IceCandidateType
impl UnwindSafe for IceCandidateType
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