#[non_exhaustive]pub struct CreateProgramInput {
pub ad_breaks: Option<Vec<AdBreak>>,
pub channel_name: Option<String>,
pub live_source_name: Option<String>,
pub program_name: Option<String>,
pub schedule_configuration: Option<ScheduleConfiguration>,
pub source_location_name: Option<String>,
pub vod_source_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ad_breaks: Option<Vec<AdBreak>>
The ad break configuration settings.
channel_name: Option<String>
The name of the channel for this Program.
live_source_name: Option<String>
The name of the LiveSource for this Program.
program_name: Option<String>
The name of the Program.
schedule_configuration: Option<ScheduleConfiguration>
The schedule configuration settings.
source_location_name: Option<String>
The name of the source location.
vod_source_name: Option<String>
The name that's used to refer to a VOD source.
Implementations§
source§impl CreateProgramInput
impl CreateProgramInput
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name of the channel for this Program.
sourcepub fn live_source_name(&self) -> Option<&str>
pub fn live_source_name(&self) -> Option<&str>
The name of the LiveSource for this Program.
sourcepub fn program_name(&self) -> Option<&str>
pub fn program_name(&self) -> Option<&str>
The name of the Program.
sourcepub fn schedule_configuration(&self) -> Option<&ScheduleConfiguration>
pub fn schedule_configuration(&self) -> Option<&ScheduleConfiguration>
The schedule configuration settings.
sourcepub fn source_location_name(&self) -> Option<&str>
pub fn source_location_name(&self) -> Option<&str>
The name of the source location.
sourcepub fn vod_source_name(&self) -> Option<&str>
pub fn vod_source_name(&self) -> Option<&str>
The name that's used to refer to a VOD source.
source§impl CreateProgramInput
impl CreateProgramInput
sourcepub fn builder() -> CreateProgramInputBuilder
pub fn builder() -> CreateProgramInputBuilder
Creates a new builder-style object to manufacture CreateProgramInput
.
Trait Implementations§
source§impl Clone for CreateProgramInput
impl Clone for CreateProgramInput
source§fn clone(&self) -> CreateProgramInput
fn clone(&self) -> CreateProgramInput
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 CreateProgramInput
impl Debug for CreateProgramInput
source§impl PartialEq for CreateProgramInput
impl PartialEq for CreateProgramInput
source§fn eq(&self, other: &CreateProgramInput) -> bool
fn eq(&self, other: &CreateProgramInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateProgramInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateProgramInput
impl Send for CreateProgramInput
impl Sync for CreateProgramInput
impl Unpin for CreateProgramInput
impl UnwindSafe for CreateProgramInput
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