pub enum ExpectedStart<X>where
X: CustomValueKind,{
PayloadPrefix(u8),
Value,
ValueBody(ValueKind<X>),
}
Variants§
Trait Implementations§
Source§impl<X> Clone for ExpectedStart<X>where
X: Clone + CustomValueKind,
impl<X> Clone for ExpectedStart<X>where
X: Clone + CustomValueKind,
Source§fn clone(&self) -> ExpectedStart<X>
fn clone(&self) -> ExpectedStart<X>
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<X> Debug for ExpectedStart<X>where
X: Debug + CustomValueKind,
impl<X> Debug for ExpectedStart<X>where
X: Debug + CustomValueKind,
impl<X> Copy for ExpectedStart<X>where
X: Copy + CustomValueKind,
Auto Trait Implementations§
impl<X> Freeze for ExpectedStart<X>where
X: Freeze,
impl<X> RefUnwindSafe for ExpectedStart<X>where
X: RefUnwindSafe,
impl<X> Send for ExpectedStart<X>where
X: Send,
impl<X> Sync for ExpectedStart<X>where
X: Sync,
impl<X> Unpin for ExpectedStart<X>where
X: Unpin,
impl<X> UnwindSafe for ExpectedStart<X>where
X: 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