pub struct UpdateChannelPrivacyRequest {
pub privacy: String,
}
Fields§
§privacy: String
Channel privacy setting: ‘O’ for a public channel, ‘P’ for a private channel
Implementations§
Source§impl UpdateChannelPrivacyRequest
impl UpdateChannelPrivacyRequest
pub fn new(privacy: String) -> UpdateChannelPrivacyRequest
Trait Implementations§
Source§impl Clone for UpdateChannelPrivacyRequest
impl Clone for UpdateChannelPrivacyRequest
Source§fn clone(&self) -> UpdateChannelPrivacyRequest
fn clone(&self) -> UpdateChannelPrivacyRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateChannelPrivacyRequest
impl Debug for UpdateChannelPrivacyRequest
Source§impl Default for UpdateChannelPrivacyRequest
impl Default for UpdateChannelPrivacyRequest
Source§fn default() -> UpdateChannelPrivacyRequest
fn default() -> UpdateChannelPrivacyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChannelPrivacyRequest
impl<'de> Deserialize<'de> for UpdateChannelPrivacyRequest
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
impl StructuralPartialEq for UpdateChannelPrivacyRequest
Auto Trait Implementations§
impl Freeze for UpdateChannelPrivacyRequest
impl RefUnwindSafe for UpdateChannelPrivacyRequest
impl Send for UpdateChannelPrivacyRequest
impl Sync for UpdateChannelPrivacyRequest
impl Unpin for UpdateChannelPrivacyRequest
impl UnwindSafe for UpdateChannelPrivacyRequest
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