pub enum EditorConfigProperty<T> {
None,
Unset,
Value(T),
}Variants§
Trait Implementations§
Source§impl<T: Clone> Clone for EditorConfigProperty<T>
impl<T: Clone> Clone for EditorConfigProperty<T>
Source§fn clone(&self) -> EditorConfigProperty<T>
fn clone(&self) -> EditorConfigProperty<T>
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<T: Debug> Debug for EditorConfigProperty<T>
impl<T: Debug> Debug for EditorConfigProperty<T>
Source§impl<T> Default for EditorConfigProperty<T>
impl<T> Default for EditorConfigProperty<T>
Source§fn default() -> EditorConfigProperty<T>
fn default() -> EditorConfigProperty<T>
Returns the “default value” for a type. Read more
Source§impl<T: PartialEq> PartialEq for EditorConfigProperty<T>
impl<T: PartialEq> PartialEq for EditorConfigProperty<T>
impl<T: Eq> Eq for EditorConfigProperty<T>
impl<T> StructuralPartialEq for EditorConfigProperty<T>
Auto Trait Implementations§
impl<T> Freeze for EditorConfigProperty<T>where
T: Freeze,
impl<T> RefUnwindSafe for EditorConfigProperty<T>where
T: RefUnwindSafe,
impl<T> Send for EditorConfigProperty<T>where
T: Send,
impl<T> Sync for EditorConfigProperty<T>where
T: Sync,
impl<T> Unpin for EditorConfigProperty<T>where
T: Unpin,
impl<T> UnwindSafe for EditorConfigProperty<T>where
T: UnwindSafe,
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