Enum zoom_api::types::EntryExitChime
source · pub enum EntryExitChime {
All,
Host,
None,
Noop,
FallthroughString,
}
Expand description
Play sound when participants join or leave.host
- Heard by host only.all
- Heard by host and all attendees.none
- Disable.
Variants§
Implementations§
Trait Implementations§
source§impl Clone for EntryExitChime
impl Clone for EntryExitChime
source§fn clone(&self) -> EntryExitChime
fn clone(&self) -> EntryExitChime
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 EntryExitChime
impl Debug for EntryExitChime
source§impl Default for EntryExitChime
impl Default for EntryExitChime
source§fn default() -> EntryExitChime
fn default() -> EntryExitChime
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for EntryExitChime
impl<'de> Deserialize<'de> for EntryExitChime
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 Display for EntryExitChime
impl Display for EntryExitChime
source§impl JsonSchema for EntryExitChime
impl JsonSchema for EntryExitChime
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn 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 moresource§impl PartialEq<EntryExitChime> for EntryExitChime
impl PartialEq<EntryExitChime> for EntryExitChime
source§fn eq(&self, other: &EntryExitChime) -> bool
fn eq(&self, other: &EntryExitChime) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EntryExitChime
impl Serialize for EntryExitChime
impl StructuralPartialEq for EntryExitChime
Auto Trait Implementations§
impl RefUnwindSafe for EntryExitChime
impl Send for EntryExitChime
impl Sync for EntryExitChime
impl Unpin for EntryExitChime
impl UnwindSafe for EntryExitChime
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