pub struct Usizes<CV = Vec<u64>> {
pub values: CV,
}
Fields§
§values: CV
Trait Implementations§
Source§impl<CV: PushIndexAs<u64>> Container for Usizes<CV>
impl<CV: PushIndexAs<u64>> Container for Usizes<CV>
Source§type Borrowed<'a> = Usizes<<CV as Container>::Borrowed<'a>>
where
CV: 'a
type Borrowed<'a> = Usizes<<CV as Container>::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.
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.fn reserve_for<'a, I>(&mut self, selves: I)
Source§impl<CV: IndexAs<u64>> Index for &Usizes<CV>
impl<CV: IndexAs<u64>> Index for &Usizes<CV>
Source§impl<CV: IndexAs<u64>> Index for Usizes<CV>
impl<CV: IndexAs<u64>> Index for Usizes<CV>
impl<CV: Copy> Copy for Usizes<CV>
Auto Trait Implementations§
impl<CV> Freeze for Usizes<CV>where
CV: Freeze,
impl<CV> RefUnwindSafe for Usizes<CV>where
CV: RefUnwindSafe,
impl<CV> Send for Usizes<CV>where
CV: Send,
impl<CV> Sync for Usizes<CV>where
CV: Sync,
impl<CV> Unpin for Usizes<CV>where
CV: Unpin,
impl<CV> UnwindSafe for Usizes<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