pub struct UpdateIngressOptions {
pub name: String,
pub room_name: String,
pub participant_metadata: String,
pub participant_identity: String,
pub participant_name: String,
pub audio: IngressAudioOptions,
pub video: IngressVideoOptions,
pub bypass_transcoding: Option<bool>,
pub enable_transcoding: Option<bool>,
}
Fields§
§name: String
§room_name: String
§participant_metadata: String
§participant_identity: String
§participant_name: String
§audio: IngressAudioOptions
§video: IngressVideoOptions
§bypass_transcoding: Option<bool>
§enable_transcoding: Option<bool>
Trait Implementations§
Source§impl Clone for UpdateIngressOptions
impl Clone for UpdateIngressOptions
Source§fn clone(&self) -> UpdateIngressOptions
fn clone(&self) -> UpdateIngressOptions
Returns a duplicate 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 UpdateIngressOptions
impl Debug for UpdateIngressOptions
Source§impl Default for UpdateIngressOptions
impl Default for UpdateIngressOptions
Source§fn default() -> UpdateIngressOptions
fn default() -> UpdateIngressOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateIngressOptions
impl RefUnwindSafe for UpdateIngressOptions
impl Send for UpdateIngressOptions
impl Sync for UpdateIngressOptions
impl Unpin for UpdateIngressOptions
impl UnwindSafe for UpdateIngressOptions
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