Enum zoom_api::types::NetworkType
source · pub enum NetworkType {
Cellular,
Others,
Ppp,
Wifi,
Wired,
Noop,
FallthroughString,
}Expand description
The participant’s network type:
WiredWifiPPP— Point-to-Point.Cellular— 3G, 4G, and 5G cellular.Others— An unknown device.
Variants
Cellular
Others
Ppp
Wifi
Wired
Noop
FallthroughString
Implementations
sourceimpl NetworkType
impl NetworkType
Trait Implementations
sourceimpl Clone for NetworkType
impl Clone for NetworkType
sourcefn clone(&self) -> NetworkType
fn clone(&self) -> NetworkType
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 moresourceimpl Debug for NetworkType
impl Debug for NetworkType
sourceimpl Default for NetworkType
impl Default for NetworkType
sourcefn default() -> NetworkType
fn default() -> NetworkType
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for NetworkType
impl<'de> Deserialize<'de> for NetworkType
sourcefn 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
sourceimpl Display for NetworkType
impl Display for NetworkType
sourceimpl JsonSchema for NetworkType
impl JsonSchema for NetworkType
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<NetworkType> for NetworkType
impl PartialEq<NetworkType> for NetworkType
sourcefn eq(&self, other: &NetworkType) -> bool
fn eq(&self, other: &NetworkType) -> bool
sourceimpl Serialize for NetworkType
impl Serialize for NetworkType
impl StructuralPartialEq for NetworkType
Auto Trait Implementations
impl RefUnwindSafe for NetworkType
impl Send for NetworkType
impl Sync for NetworkType
impl Unpin for NetworkType
impl UnwindSafe for NetworkType
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