Struct google_youtube3::api::CdnSettings
source · pub struct CdnSettings {
pub format: Option<String>,
pub frame_rate: Option<String>,
pub ingestion_info: Option<IngestionInfo>,
pub ingestion_type: Option<String>,
pub resolution: Option<String>,
}
Expand description
Brief description of the live stream cdn settings.
This type is not used in any activity, and only used as part of another schema.
Fields§
§format: Option<String>
The format of the video stream that you are sending to Youtube.
frame_rate: Option<String>
The frame rate of the inbound video data.
ingestion_info: Option<IngestionInfo>
The ingestionInfo object contains information that YouTube provides that you need to transmit your RTMP or HTTP stream to YouTube.
ingestion_type: Option<String>
The method or protocol used to transmit the video stream.
resolution: Option<String>
The resolution of the inbound video data.
Trait Implementations§
source§impl Clone for CdnSettings
impl Clone for CdnSettings
source§fn clone(&self) -> CdnSettings
fn clone(&self) -> CdnSettings
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 CdnSettings
impl Debug for CdnSettings
source§impl Default for CdnSettings
impl Default for CdnSettings
source§fn default() -> CdnSettings
fn default() -> CdnSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CdnSettings
impl<'de> Deserialize<'de> for CdnSettings
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 Serialize for CdnSettings
impl Serialize for CdnSettings
impl Part for CdnSettings
Auto Trait Implementations§
impl RefUnwindSafe for CdnSettings
impl Send for CdnSettings
impl Sync for CdnSettings
impl Unpin for CdnSettings
impl UnwindSafe for CdnSettings
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