#[non_exhaustive]pub struct DeleteProgramInput {
    pub channel_name: Option<String>,
    pub program_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.channel_name: Option<String>The name of the channel.
program_name: Option<String>The name of the program.
Implementations§
source§impl DeleteProgramInput
 
impl DeleteProgramInput
sourcepub fn channel_name(&self) -> Option<&str>
 
pub fn channel_name(&self) -> Option<&str>
The name of the channel.
sourcepub fn program_name(&self) -> Option<&str>
 
pub fn program_name(&self) -> Option<&str>
The name of the program.
source§impl DeleteProgramInput
 
impl DeleteProgramInput
sourcepub fn builder() -> DeleteProgramInputBuilder
 
pub fn builder() -> DeleteProgramInputBuilder
Creates a new builder-style object to manufacture DeleteProgramInput.
Trait Implementations§
source§impl Clone for DeleteProgramInput
 
impl Clone for DeleteProgramInput
source§fn clone(&self) -> DeleteProgramInput
 
fn clone(&self) -> DeleteProgramInput
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 DeleteProgramInput
 
impl Debug for DeleteProgramInput
source§impl PartialEq<DeleteProgramInput> for DeleteProgramInput
 
impl PartialEq<DeleteProgramInput> for DeleteProgramInput
source§fn eq(&self, other: &DeleteProgramInput) -> bool
 
fn eq(&self, other: &DeleteProgramInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteProgramInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteProgramInput
impl Send for DeleteProgramInput
impl Sync for DeleteProgramInput
impl Unpin for DeleteProgramInput
impl UnwindSafe for DeleteProgramInput
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