pub enum InputThemeSettings {
InputThemeSettings(InputThemeSettings),
}Expand description
Variants§
InputThemeSettings(InputThemeSettings)
Trait Implementations§
Source§impl Clone for InputThemeSettings
impl Clone for InputThemeSettings
Source§fn clone(&self) -> InputThemeSettings
fn clone(&self) -> InputThemeSettings
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 InputThemeSettings
impl Debug for InputThemeSettings
Source§impl Deserializable for InputThemeSettings
impl Deserializable for InputThemeSettings
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<InputThemeSettings> for InputThemeSettings
impl From<InputThemeSettings> for InputThemeSettings
Source§fn from(x: InputThemeSettings) -> Self
fn from(x: InputThemeSettings) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputThemeSettings
impl PartialEq for InputThemeSettings
Source§impl Serializable for InputThemeSettings
impl Serializable for InputThemeSettings
Source§impl TryFrom<InputThemeSettings> for InputThemeSettings
impl TryFrom<InputThemeSettings> for InputThemeSettings
Source§type Error = InputThemeSettings
type Error = InputThemeSettings
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputThemeSettings
Auto Trait Implementations§
impl Freeze for InputThemeSettings
impl RefUnwindSafe for InputThemeSettings
impl Send for InputThemeSettings
impl Sync for InputThemeSettings
impl Unpin for InputThemeSettings
impl UnsafeUnpin for InputThemeSettings
impl UnwindSafe for InputThemeSettings
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