enum NeovimClientState {
Uninitialized,
InitInProgress,
Initialized,
Error,
}
Variants§
Trait Implementations§
Source§impl Clone for NeovimClientState
impl Clone for NeovimClientState
Source§fn clone(&self) -> NeovimClientState
fn clone(&self) -> NeovimClientState
Returns a copy 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 PartialEq for NeovimClientState
impl PartialEq for NeovimClientState
impl Copy for NeovimClientState
impl StructuralPartialEq for NeovimClientState
Auto Trait Implementations§
impl Freeze for NeovimClientState
impl RefUnwindSafe for NeovimClientState
impl Send for NeovimClientState
impl Sync for NeovimClientState
impl Unpin for NeovimClientState
impl UnwindSafe for NeovimClientState
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