Struct av_stream_info_rust::StreamInfo[][src]

pub struct StreamInfo {
    pub Server: Option<String>,
    pub Public: Option<bool>,
    pub IceAudioInfo: Option<String>,
    pub AudioInfo: Option<String>,
    pub Name: Option<String>,
    pub Description: Option<String>,
    pub Type: String,
    pub Url: String,
    pub Homepage: Option<String>,
    pub Genre: Option<String>,
    pub Bitrate: Option<u32>,
    pub Sampling: Option<u32>,
    pub CodecAudio: String,
    pub CodecVideo: Option<String>,
    pub Hls: bool,
    pub LogoUrl: Option<String>,
    pub MainStreamUrl: Option<String>,
    pub IcyVersion: u32,
    pub OverrideIndexMetaData: Option<bool>,
    pub CountryCode: Option<String>,
    pub CountrySubdivisonCode: Option<String>,
    pub LanguageCodes: Vec<String>,
    pub DoNotIndex: Option<bool>,
}

Fields

Server: Option<String>Public: Option<bool>IceAudioInfo: Option<String>AudioInfo: Option<String>Name: Option<String>Description: Option<String>Type: StringUrl: StringHomepage: Option<String>Genre: Option<String>Bitrate: Option<u32>Sampling: Option<u32>CodecAudio: StringCodecVideo: Option<String>Hls: boolLogoUrl: Option<String>MainStreamUrl: Option<String>IcyVersion: u32OverrideIndexMetaData: Option<bool>CountryCode: Option<String>CountrySubdivisonCode: Option<String>LanguageCodes: Vec<String>DoNotIndex: Option<bool>

Trait Implementations

impl Clone for StreamInfo[src]

impl Debug for StreamInfo[src]

impl Serialize for StreamInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.