pub struct ManagerOptions {
pub decryption_provider: Option<Arc<dyn DecryptionProvider>>,
}Expand description
Options for creating a Manager.
Fields§
§decryption_provider: Option<Arc<dyn DecryptionProvider>>Provider to use for decrypting incoming frame payloads.
If none, remote tracks using end-to-end encryption will not be available for subscription.
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