pub struct Chars<CV = Vec<u32>> {
pub values: CV,
}Fields§
§values: CVTrait Implementations§
Source§impl<CV: BorrowIndexAs<u32>> Borrow for Chars<CV>
impl<CV: BorrowIndexAs<u32>> Borrow for Chars<CV>
Source§type Borrowed<'a> = Chars<<CV as Borrow>::Borrowed<'a>>
where
CV: 'a
type Borrowed<'a> = Chars<<CV as Borrow>::Borrowed<'a>> where CV: 'a
The type of a borrowed container. Read more
Source§fn borrow<'a>(&'a self) -> Self::Borrowed<'a>
fn borrow<'a>(&'a self) -> Self::Borrowed<'a>
Converts a reference to the type to a borrowed variant. Read more
Source§fn reborrow<'b, 'a: 'b>(thing: Self::Borrowed<'a>) -> Self::Borrowed<'b>where
CV: 'a,
fn reborrow<'b, 'a: 'b>(thing: Self::Borrowed<'a>) -> Self::Borrowed<'b>where
CV: 'a,
Reborrows the borrowed type to a shorter lifetime. See
Columnar::reborrow for details.Source§fn reborrow_ref<'b, 'a: 'b>(thing: Self::Ref<'a>) -> Self::Ref<'b>where
Self: 'a,
fn reborrow_ref<'b, 'a: 'b>(thing: Self::Ref<'a>) -> Self::Ref<'b>where
Self: 'a,
Reborrows the borrowed type to a shorter lifetime. See
Columnar::reborrow for details.Source§impl<CV: PushIndexAs<u32>> Container for Chars<CV>
impl<CV: PushIndexAs<u32>> Container for Chars<CV>
fn reserve_for<'a, I>(&mut self, selves: I)
Source§impl<'a, CV: FromBytes<'a>> FromBytes<'a> for Chars<CV>
impl<'a, CV: FromBytes<'a>> FromBytes<'a> for Chars<CV>
Source§const SLICE_COUNT: usize = CV::SLICE_COUNT
const SLICE_COUNT: usize = CV::SLICE_COUNT
The number of byte slices this type consumes when reconstructed.
Source§fn from_bytes(bytes: &mut impl Iterator<Item = &'a [u8]>) -> Self
fn from_bytes(bytes: &mut impl Iterator<Item = &'a [u8]>) -> Self
Reconstructs
self from a sequence of correctly aligned and sized bytes slices. Read moreSource§fn from_store(store: &DecodedStore<'a>, offset: &mut usize) -> Self
fn from_store(store: &DecodedStore<'a>, offset: &mut usize) -> Self
Source§impl<CV: IndexAs<u32>> Index for &Chars<CV>
impl<CV: IndexAs<u32>> Index for &Chars<CV>
Source§impl<CV: IndexAs<u32>> Index for Chars<CV>
impl<CV: IndexAs<u32>> Index for Chars<CV>
impl<CV: Copy> Copy for Chars<CV>
Auto Trait Implementations§
impl<CV> Freeze for Chars<CV>where
CV: Freeze,
impl<CV> RefUnwindSafe for Chars<CV>where
CV: RefUnwindSafe,
impl<CV> Send for Chars<CV>where
CV: Send,
impl<CV> Sync for Chars<CV>where
CV: Sync,
impl<CV> Unpin for Chars<CV>where
CV: Unpin,
impl<CV> UnsafeUnpin for Chars<CV>where
CV: UnsafeUnpin,
impl<CV> UnwindSafe for Chars<CV>where
CV: 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