pub enum RoomApiMetrics {
V1(RoomV1Metrics),
V2(RoomV2Metrics),
}
Variants§
V1(RoomV1Metrics)
V2(RoomV2Metrics)
Trait Implementations§
Source§impl Clone for RoomApiMetrics
impl Clone for RoomApiMetrics
Source§fn clone(&self) -> RoomApiMetrics
fn clone(&self) -> RoomApiMetrics
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 RoomApiMetrics
impl Debug for RoomApiMetrics
Source§impl<'de> Deserialize<'de> for RoomApiMetrics
impl<'de> Deserialize<'de> for RoomApiMetrics
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 RoomApiMetrics
impl PartialEq for RoomApiMetrics
impl StructuralPartialEq for RoomApiMetrics
Auto Trait Implementations§
impl Freeze for RoomApiMetrics
impl RefUnwindSafe for RoomApiMetrics
impl Send for RoomApiMetrics
impl Sync for RoomApiMetrics
impl Unpin for RoomApiMetrics
impl UnwindSafe for RoomApiMetrics
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