pub enum MediaDeliveryMode {
RawFlv,
ParsedFrames,
Both,
}Expand description
Media delivery mode configuration
Variants§
RawFlv
Deliver raw FLV tags (minimal parsing)
ParsedFrames
Deliver parsed frames (H.264 NALUs, AAC frames)
Both
Deliver both raw tags and parsed frames
Trait Implementations§
Source§impl Clone for MediaDeliveryMode
impl Clone for MediaDeliveryMode
Source§fn clone(&self) -> MediaDeliveryMode
fn clone(&self) -> MediaDeliveryMode
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 MediaDeliveryMode
impl Debug for MediaDeliveryMode
Source§impl Default for MediaDeliveryMode
impl Default for MediaDeliveryMode
Source§fn default() -> MediaDeliveryMode
fn default() -> MediaDeliveryMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for MediaDeliveryMode
impl PartialEq for MediaDeliveryMode
impl Copy for MediaDeliveryMode
impl Eq for MediaDeliveryMode
impl StructuralPartialEq for MediaDeliveryMode
Auto Trait Implementations§
impl Freeze for MediaDeliveryMode
impl RefUnwindSafe for MediaDeliveryMode
impl Send for MediaDeliveryMode
impl Sync for MediaDeliveryMode
impl Unpin for MediaDeliveryMode
impl UnwindSafe for MediaDeliveryMode
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