#[non_exhaustive]pub enum ActiveFocus {
Livekit(ActiveLivekitFocus),
}
Expand description
Data to define the actively used Focus.
A focus can be any server powering the MatrixRTC session (SFU, MCU). It serves as a node to redistribute RTC streams.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Livekit(ActiveLivekitFocus)
LiveKit is one possible type of SFU/Focus that can be used for a MatrixRTC session.
Trait Implementations§
source§impl Clone for ActiveFocus
impl Clone for ActiveFocus
source§fn clone(&self) -> ActiveFocus
fn clone(&self) -> ActiveFocus
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 ActiveFocus
impl Debug for ActiveFocus
source§impl<'de> Deserialize<'de> for ActiveFocus
impl<'de> Deserialize<'de> for ActiveFocus
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ActiveFocus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ActiveFocus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ActiveFocus
impl PartialEq for ActiveFocus
source§fn eq(&self, other: &ActiveFocus) -> bool
fn eq(&self, other: &ActiveFocus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ActiveFocus
impl Serialize for ActiveFocus
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ActiveFocus
Auto Trait Implementations§
impl Freeze for ActiveFocus
impl RefUnwindSafe for ActiveFocus
impl Send for ActiveFocus
impl Sync for ActiveFocus
impl Unpin for ActiveFocus
impl UnwindSafe for ActiveFocus
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)