pub struct UpdateChannelRequest {
pub description: Option<String>,
pub id: String,
}Expand description
Configuration parameters used to update the Channel.
Fields§
§description: Option<String>A short text description of the Channel.
id: StringThe ID of the Channel to update.
Trait Implementations§
Source§impl Clone for UpdateChannelRequest
impl Clone for UpdateChannelRequest
Source§fn clone(&self) -> UpdateChannelRequest
fn clone(&self) -> UpdateChannelRequest
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 UpdateChannelRequest
impl Debug for UpdateChannelRequest
Source§impl Default for UpdateChannelRequest
impl Default for UpdateChannelRequest
Source§fn default() -> UpdateChannelRequest
fn default() -> UpdateChannelRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateChannelRequest
impl PartialEq for UpdateChannelRequest
Source§impl Serialize for UpdateChannelRequest
impl Serialize for UpdateChannelRequest
impl StructuralPartialEq for UpdateChannelRequest
Auto Trait Implementations§
impl Freeze for UpdateChannelRequest
impl RefUnwindSafe for UpdateChannelRequest
impl Send for UpdateChannelRequest
impl Sync for UpdateChannelRequest
impl Unpin for UpdateChannelRequest
impl UnwindSafe for UpdateChannelRequest
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