#[repr(u8)]pub enum IceState {
New = 0,
Connected = 1,
Completed = 2,
Disconnected = 3,
}
Expand description
The enum IceState
in the namespace FBS.WebRtcTransport
Generated from these locations:
- Enum
IceState
in the filefbs/webRtcTransport.fbs:80
Variants§
New = 0
The variant NEW
in the enum IceState
Connected = 1
The variant CONNECTED
in the enum IceState
Completed = 2
The variant COMPLETED
in the enum IceState
Disconnected = 3
The variant DISCONNECTED
in the enum IceState
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IceState
impl<'de> Deserialize<'de> for IceState
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 Ord for IceState
impl Ord for IceState
Source§impl PartialOrd for IceState
impl PartialOrd for IceState
Source§impl TryFrom<u8> for IceState
impl TryFrom<u8> for IceState
Source§type Error = UnknownEnumTagKind
type Error = UnknownEnumTagKind
The type returned in the event of a conversion error.
impl Copy for IceState
impl Eq for IceState
impl StructuralPartialEq for IceState
impl VectorWrite<IceState> for IceState
impl WriteAs<IceState> for IceState
impl WriteAsDefault<IceState, IceState> for IceState
impl WriteAsOptional<IceState> for IceState
Auto Trait Implementations§
impl Freeze for IceState
impl RefUnwindSafe for IceState
impl Send for IceState
impl Sync for IceState
impl Unpin for IceState
impl UnwindSafe for IceState
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