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