pub struct SpliceInfoSection {Show 17 fields
pub xmlns: Option<String>,
pub sap_type: Option<u16>,
pub pre_roll_milliseconds: Option<u32>,
pub pts_adjustment: Option<u64>,
pub protocol_version: Option<u8>,
pub tier: Option<u16>,
pub time_signal: Option<TimeSignal>,
pub segmentation_descriptor: Option<SegmentationDescriptor>,
pub splice_null: Option<SpliceNull>,
pub splice_insert: Option<SpliceInsert>,
pub splice_schedule: Option<SpliceSchedule>,
pub bandwidth_reservation: Option<BandwidthReservation>,
pub private_command: Option<PrivateCommand>,
pub encrypted_packet: Option<EncryptedPacket>,
pub avail_descriptor: Option<AvailDescriptor>,
pub dtmf_descriptor: Option<DTMFDescriptor>,
pub time_descriptor: Option<TimeDescriptor>,
}
Fields§
§xmlns: Option<String>
§sap_type: Option<u16>
§pre_roll_milliseconds: Option<u32>
§pts_adjustment: Option<u64>
§protocol_version: Option<u8>
§tier: Option<u16>
§time_signal: Option<TimeSignal>
§segmentation_descriptor: Option<SegmentationDescriptor>
§splice_null: Option<SpliceNull>
§splice_insert: Option<SpliceInsert>
§splice_schedule: Option<SpliceSchedule>
§bandwidth_reservation: Option<BandwidthReservation>
§private_command: Option<PrivateCommand>
§encrypted_packet: Option<EncryptedPacket>
§avail_descriptor: Option<AvailDescriptor>
§dtmf_descriptor: Option<DTMFDescriptor>
§time_descriptor: Option<TimeDescriptor>
Trait Implementations§
Source§impl Clone for SpliceInfoSection
impl Clone for SpliceInfoSection
Source§fn clone(&self) -> SpliceInfoSection
fn clone(&self) -> SpliceInfoSection
Returns a copy 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 SpliceInfoSection
impl Debug for SpliceInfoSection
Source§impl Default for SpliceInfoSection
impl Default for SpliceInfoSection
Source§fn default() -> SpliceInfoSection
fn default() -> SpliceInfoSection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpliceInfoSectionwhere
SpliceInfoSection: Default,
impl<'de> Deserialize<'de> for SpliceInfoSectionwhere
SpliceInfoSection: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SpliceInfoSection
impl PartialEq for SpliceInfoSection
Source§impl Serialize for SpliceInfoSection
impl Serialize for SpliceInfoSection
impl StructuralPartialEq for SpliceInfoSection
Auto Trait Implementations§
impl Freeze for SpliceInfoSection
impl RefUnwindSafe for SpliceInfoSection
impl Send for SpliceInfoSection
impl Sync for SpliceInfoSection
impl Unpin for SpliceInfoSection
impl UnwindSafe for SpliceInfoSection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more