jarust_plugins 1.9.3

A janus client SDK in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::JanusId;
use serde::Deserialize;

#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Deserialize)]
pub struct AudioBridgeParticipant {
    pub id: JanusId,
    pub display: Option<String>,
    pub setup: bool,
    pub muted: bool,
    pub suspended: Option<bool>,
    pub talking: Option<bool>,
    pub spatial_position: Option<u64>,
}