Struct extendr_api::prelude::utils::vec::VecGroup

pub struct VecGroup<E, T = <E as Entity>::Unit>
where E: Entity,
{ inner: <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>, }
Expand description

Analogous to alloc::vec::Vec for groups.

Fields§

§inner: <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>

Implementations§

§

impl<E, T> VecGroup<E, T>
where E: Entity,

pub fn from_inner( inner: <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>, ) -> VecGroup<E, T>

Create a new VecGroup from a group of alloc::vec::Vec.

pub fn into_inner(self) -> <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>

Consume self to return a group of alloc::vec::Vec.

pub fn as_inner_ref(&self) -> <<E as Entity>::Group as ForType>::FaerOf<&Vec<T>>

Return a reference to the inner group of alloc::vec::Vec.

pub fn as_inner_mut( &mut self, ) -> <<E as Entity>::Group as ForType>::FaerOf<&mut Vec<T>>

Return a mutable reference to the inner group of alloc::vec::Vec.

pub fn as_slice(&self) -> SliceGroup<'_, E, T>

Return a SliceGroup view over the elements of self.

pub fn as_slice_mut(&mut self) -> SliceGroupMut<'_, E, T>

Return a SliceGroupMut mutable view over the elements of self.

pub fn new() -> VecGroup<E, T>

Create an empty VecGroup.

pub fn len(&self) -> usize

Returns the length of the vector group.

pub fn capacity(&self) -> usize

Returns the capacity of the vector group.

pub fn reserve(&mut self, additional: usize)

Reserve enough capacity for extra additional elements.

pub fn reserve_exact(&mut self, additional: usize)

Reserve exactly enough capacity for extra additional elements.

pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>

Try to reserve enough capacity for extra additional elements.

pub fn try_reserve_exact( &mut self, additional: usize, ) -> Result<(), TryReserveError>

Try to reserve exactly enough capacity for extra additional elements.

pub fn truncate(&mut self, len: usize)

Truncate the length of the vector to len.

pub fn clear(&mut self)

Clear the vector, making it empty.

pub fn resize( &mut self, new_len: usize, value: <<E as Entity>::Group as ForType>::FaerOf<T>, )
where T: Clone,

Resize the vector to new_len, filling the new elements with value.

pub fn resize_with( &mut self, new_len: usize, f: impl FnMut() -> <<E as Entity>::Group as ForType>::FaerOf<T>, )

Resize the vector to new_len, filling the new elements with the output of f.

pub fn push(&mut self, value: <<E as Entity>::Group as ForType>::FaerOf<T>)

Push a new element to the end of self.

pub fn pop(&mut self) -> Option<<<E as Entity>::Group as ForType>::FaerOf<T>>

Remove a new element from the end of self, and return it.

pub fn remove( &mut self, index: usize, ) -> <<E as Entity>::Group as ForType>::FaerOf<T>

Remove a new element from position index, and return it.

Trait Implementations§

§

impl<E, T> Clone for VecGroup<E, T>
where E: Entity, T: Clone,

§

fn clone(&self) -> VecGroup<E, T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<E, T> Debug for VecGroup<E, T>
where E: Entity, T: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<E, T> Default for VecGroup<E, T>
where E: Entity,

§

fn default() -> VecGroup<E, T>

Returns the “default value” for a type. Read more
§

impl<E, T> Send for VecGroup<E, T>
where E: Entity, T: Send,

§

impl<E, T> Sync for VecGroup<E, T>
where E: Entity, T: Sync,

Auto Trait Implementations§

§

impl<E, T> Freeze for VecGroup<E, T>
where <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>: Freeze,

§

impl<E, T> RefUnwindSafe for VecGroup<E, T>
where <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>: RefUnwindSafe,

§

impl<E, T> Unpin for VecGroup<E, T>
where <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>: Unpin,

§

impl<E, T> UnwindSafe for VecGroup<E, T>
where <<E as Entity>::Group as ForType>::FaerOf<Vec<T>>: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.