pub struct FrameStream {
pub bandwidth: u32,
pub resolution: (u16, u16),
pub codecs: String,
pub uri: String,
}Fields§
§bandwidth: u32The average bitrate of the I-frame stream.
resolution: (u16, u16)The resolution of the I-frame stream (e.g., 1440x1080).
codecs: StringSpecifies the codecs used for the I-frame stream.
uri: StringThe URI of the m3u8 file containing the I-frames for this variant.
Trait Implementations§
Source§impl Debug for FrameStream
impl Debug for FrameStream
Source§impl PartialEq for FrameStream
impl PartialEq for FrameStream
impl StructuralPartialEq for FrameStream
Auto Trait Implementations§
impl Freeze for FrameStream
impl RefUnwindSafe for FrameStream
impl Send for FrameStream
impl Sync for FrameStream
impl Unpin for FrameStream
impl UnwindSafe for FrameStream
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