pub enum GlobalPrivacySettings {
GlobalPrivacySettings(GlobalPrivacySettings),
}Expand description
Variants§
GlobalPrivacySettings(GlobalPrivacySettings)
Trait Implementations§
Source§impl Clone for GlobalPrivacySettings
impl Clone for GlobalPrivacySettings
Source§fn clone(&self) -> GlobalPrivacySettings
fn clone(&self) -> GlobalPrivacySettings
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 GlobalPrivacySettings
impl Debug for GlobalPrivacySettings
Source§impl Deserializable for GlobalPrivacySettings
impl Deserializable for GlobalPrivacySettings
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<GlobalPrivacySettings> for GlobalPrivacySettings
impl From<GlobalPrivacySettings> for GlobalPrivacySettings
Source§fn from(x: GlobalPrivacySettings) -> Self
fn from(x: GlobalPrivacySettings) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GlobalPrivacySettings
impl PartialEq for GlobalPrivacySettings
Source§impl Serializable for GlobalPrivacySettings
impl Serializable for GlobalPrivacySettings
Source§impl TryFrom<GlobalPrivacySettings> for GlobalPrivacySettings
impl TryFrom<GlobalPrivacySettings> for GlobalPrivacySettings
Source§type Error = GlobalPrivacySettings
type Error = GlobalPrivacySettings
The type returned in the event of a conversion error.
impl StructuralPartialEq for GlobalPrivacySettings
Auto Trait Implementations§
impl Freeze for GlobalPrivacySettings
impl RefUnwindSafe for GlobalPrivacySettings
impl Send for GlobalPrivacySettings
impl Sync for GlobalPrivacySettings
impl Unpin for GlobalPrivacySettings
impl UnsafeUnpin for GlobalPrivacySettings
impl UnwindSafe for GlobalPrivacySettings
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