pub enum ValueViewData<'s> {
OneByte(&'s [u8]),
TwoByte(&'s [u16]),
}Variants§
Trait Implementations§
Source§impl<'s> Debug for ValueViewData<'s>
impl<'s> Debug for ValueViewData<'s>
Source§impl<'s> PartialEq for ValueViewData<'s>
impl<'s> PartialEq for ValueViewData<'s>
Source§fn eq(&self, other: &ValueViewData<'s>) -> bool
fn eq(&self, other: &ValueViewData<'s>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'s> StructuralPartialEq for ValueViewData<'s>
Auto Trait Implementations§
impl<'s> Freeze for ValueViewData<'s>
impl<'s> RefUnwindSafe for ValueViewData<'s>
impl<'s> Send for ValueViewData<'s>
impl<'s> Sync for ValueViewData<'s>
impl<'s> Unpin for ValueViewData<'s>
impl<'s> UnsafeUnpin for ValueViewData<'s>
impl<'s> UnwindSafe for ValueViewData<'s>
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