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