pub struct ManagerOptions {
pub encryption_provider: Option<Arc<dyn EncryptionProvider>>,
}Expand description
Options for creating a Manager.
Fields§
§encryption_provider: Option<Arc<dyn EncryptionProvider>>Provider to use for encrypting outgoing frame payloads.
If none, end-to-end encryption will be disabled for all published tracks.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ManagerOptions
impl !RefUnwindSafe for ManagerOptions
impl Send for ManagerOptions
impl Sync for ManagerOptions
impl Unpin for ManagerOptions
impl UnsafeUnpin for ManagerOptions
impl !UnwindSafe for ManagerOptions
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