pub struct SourceNormalizerPacketStreamInfo {
pub session_id: Option<String>,
pub normalizer_name: Option<String>,
pub runtime_profile: Option<String>,
pub selected_backend: Option<String>,
pub tracks: Vec<SourceNormalizerPacketTrackInfo>,
pub selected_track_index: Option<u32>,
pub duration_millis: Option<u64>,
pub seekable: bool,
}Expand description
Packet-stream metadata returned after opening a source normalizer session.
Fields§
§session_id: Option<String>§normalizer_name: Option<String>§runtime_profile: Option<String>§selected_backend: Option<String>§tracks: Vec<SourceNormalizerPacketTrackInfo>§selected_track_index: Option<u32>§duration_millis: Option<u64>§seekable: boolTrait Implementations§
Source§impl Clone for SourceNormalizerPacketStreamInfo
impl Clone for SourceNormalizerPacketStreamInfo
Source§fn clone(&self) -> SourceNormalizerPacketStreamInfo
fn clone(&self) -> SourceNormalizerPacketStreamInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SourceNormalizerPacketStreamInfo
impl Default for SourceNormalizerPacketStreamInfo
Source§fn default() -> SourceNormalizerPacketStreamInfo
fn default() -> SourceNormalizerPacketStreamInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceNormalizerPacketStreamInfo
impl<'de> Deserialize<'de> for SourceNormalizerPacketStreamInfo
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
impl StructuralPartialEq for SourceNormalizerPacketStreamInfo
Auto Trait Implementations§
impl Freeze for SourceNormalizerPacketStreamInfo
impl RefUnwindSafe for SourceNormalizerPacketStreamInfo
impl Send for SourceNormalizerPacketStreamInfo
impl Sync for SourceNormalizerPacketStreamInfo
impl Unpin for SourceNormalizerPacketStreamInfo
impl UnsafeUnpin for SourceNormalizerPacketStreamInfo
impl UnwindSafe for SourceNormalizerPacketStreamInfo
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