pub struct RenditionReport {
pub uri: String,
pub last_sequence_number: Option<u64>,
pub last_part_index: Option<u64>,
}Expand description
Information about an associated Rendition that is as up-to-date as the Playlist that contains the report.
Fields§
§uri: StringThe URI for the MediaPlaylist of the specified rendition.
last_sequence_number: Option<u64>The media sequence number of the last MediaSegment currently
in the specified Rendition.
last_part_index: Option<u64>The part index of the last PartialSegment currently in the
specified rendition whose media sequence number is equal to
last_sequence_number.
Trait Implementations§
Source§impl Clone for RenditionReport
impl Clone for RenditionReport
Source§fn clone(&self) -> RenditionReport
fn clone(&self) -> RenditionReport
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 RenditionReport
impl Debug for RenditionReport
Source§impl PartialEq for RenditionReport
impl PartialEq for RenditionReport
impl Eq for RenditionReport
impl StructuralPartialEq for RenditionReport
Auto Trait Implementations§
impl Freeze for RenditionReport
impl RefUnwindSafe for RenditionReport
impl Send for RenditionReport
impl Sync for RenditionReport
impl Unpin for RenditionReport
impl UnwindSafe for RenditionReport
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