pub struct UpdateChannelResponse {
pub arn: Option<String>,
pub description: Option<String>,
pub hls_ingest: Option<HlsIngest>,
pub id: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Fields§
§arn: Option<String>The Amazon Resource Name (ARN) assigned to the Channel.
description: Option<String>A short text description of the Channel.
hls_ingest: Option<HlsIngest>§id: Option<String>The ID of the Channel.
Trait Implementations§
Source§impl Clone for UpdateChannelResponse
impl Clone for UpdateChannelResponse
Source§fn clone(&self) -> UpdateChannelResponse
fn clone(&self) -> UpdateChannelResponse
Returns a duplicate 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 UpdateChannelResponse
impl Debug for UpdateChannelResponse
Source§impl Default for UpdateChannelResponse
impl Default for UpdateChannelResponse
Source§fn default() -> UpdateChannelResponse
fn default() -> UpdateChannelResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChannelResponse
impl<'de> Deserialize<'de> for UpdateChannelResponse
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 PartialEq for UpdateChannelResponse
impl PartialEq for UpdateChannelResponse
impl StructuralPartialEq for UpdateChannelResponse
Auto Trait Implementations§
impl Freeze for UpdateChannelResponse
impl RefUnwindSafe for UpdateChannelResponse
impl Send for UpdateChannelResponse
impl Sync for UpdateChannelResponse
impl Unpin for UpdateChannelResponse
impl UnwindSafe for UpdateChannelResponse
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