pub struct CreateChannelRequest {
pub description: Option<String>,
pub id: String,
pub tags: Option<HashMap<String, String>>,
}Expand description
A new Channel configuration.
Fields§
§description: Option<String>A short text description of the Channel.
id: StringThe ID of the Channel. The ID must be unique within the region and it cannot be changed after a Channel is created.
Trait Implementations§
Source§impl Clone for CreateChannelRequest
impl Clone for CreateChannelRequest
Source§fn clone(&self) -> CreateChannelRequest
fn clone(&self) -> CreateChannelRequest
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 CreateChannelRequest
impl Debug for CreateChannelRequest
Source§impl Default for CreateChannelRequest
impl Default for CreateChannelRequest
Source§fn default() -> CreateChannelRequest
fn default() -> CreateChannelRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateChannelRequest
impl PartialEq for CreateChannelRequest
Source§impl Serialize for CreateChannelRequest
impl Serialize for CreateChannelRequest
impl StructuralPartialEq for CreateChannelRequest
Auto Trait Implementations§
impl Freeze for CreateChannelRequest
impl RefUnwindSafe for CreateChannelRequest
impl Send for CreateChannelRequest
impl Sync for CreateChannelRequest
impl Unpin for CreateChannelRequest
impl UnwindSafe for CreateChannelRequest
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