pub enum ProviderSettings {
GoogleMeet {
auto_join: bool,
quality: RecordingQuality,
},
MicrosoftTeams {
auto_join: bool,
quality: RecordingQuality,
},
Zoom {
auto_join: bool,
quality: RecordingQuality,
cloud_recording: bool,
},
}Expand description
Provider-specific settings.
Variants§
Trait Implementations§
Source§impl Clone for ProviderSettings
impl Clone for ProviderSettings
Source§fn clone(&self) -> ProviderSettings
fn clone(&self) -> ProviderSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProviderSettings
impl Debug for ProviderSettings
Source§impl<'de> Deserialize<'de> for ProviderSettings
impl<'de> Deserialize<'de> for ProviderSettings
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 PartialEq for ProviderSettings
impl PartialEq for ProviderSettings
Source§fn eq(&self, other: &ProviderSettings) -> bool
fn eq(&self, other: &ProviderSettings) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProviderSettings
impl Serialize for ProviderSettings
impl StructuralPartialEq for ProviderSettings
Auto Trait Implementations§
impl Freeze for ProviderSettings
impl RefUnwindSafe for ProviderSettings
impl Send for ProviderSettings
impl Sync for ProviderSettings
impl Unpin for ProviderSettings
impl UnsafeUnpin for ProviderSettings
impl UnwindSafe for ProviderSettings
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