Enum webrtc_ice::state::GatheringState
source · pub enum GatheringState {
Unspecified,
New,
Gathering,
Complete,
}
Expand description
Describes the state of the candidate gathering process.
Variants§
Unspecified
New
Indicates candidate gathering is not yet started.
Gathering
Indicates candidate gathering is ongoing.
Complete
Indicates candidate gathering has been completed.
Trait Implementations§
source§impl Clone for GatheringState
impl Clone for GatheringState
source§fn clone(&self) -> GatheringState
fn clone(&self) -> GatheringState
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 Default for GatheringState
impl Default for GatheringState
source§impl Display for GatheringState
impl Display for GatheringState
source§impl From<u8> for GatheringState
impl From<u8> for GatheringState
source§impl PartialEq for GatheringState
impl PartialEq for GatheringState
source§fn eq(&self, other: &GatheringState) -> bool
fn eq(&self, other: &GatheringState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for GatheringState
impl Eq for GatheringState
impl StructuralPartialEq for GatheringState
Auto Trait Implementations§
impl Freeze for GatheringState
impl RefUnwindSafe for GatheringState
impl Send for GatheringState
impl Sync for GatheringState
impl Unpin for GatheringState
impl UnwindSafe for GatheringState
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