enum PairState {
    WaitingForKey,
    WaitingForValue {
        key: Cow<'static, str>,
    },
    Done,
}Variants§
Auto Trait Implementations§
impl Freeze for PairState
impl RefUnwindSafe for PairState
impl Send for PairState
impl Sync for PairState
impl Unpin for PairState
impl UnwindSafe for PairState
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