ExtendedIdxVec

Struct ExtendedIdxVec 

Source
pub struct ExtendedIdxVec<I: Idx, T> {
    inner: IdxVec<I, T>,
    num_imports: u32,
}
Expand description

Index space for definitions that consist of imports and locals.

Fields§

§inner: IdxVec<I, T>§num_imports: u32

Implementations§

Source§

impl<I: Idx, T> ExtendedIdxVec<I, T>

Source

pub fn new(imports: Vec<T>, locals: Vec<T>) -> Result<Self, IdxVecOverflowError>

Creates a new IdxVec with the given imported and local elements in it.

If the number of total elements is larger than what can be addressed by a u32, i.e. u32::MAX elements, an error is returned instead.

Source

pub fn len_local_definitions(&self) -> u32

Returns the length of the locally-defined definitions part of this index space

Source

pub fn map<R>( &self, new_imported_definitions: Vec<R>, new_local_definitions: Vec<R>, ) -> Option<ExtendedIdxVec<I, R>>

Creates an equivalent index space for one that already exists while allowing elements to be mapped.

Returns None if lengths do not match.

Source

pub fn iter_local_definitions(&self) -> Iter<'_, T>

Source

pub fn inner(&self) -> &IdxVec<I, T>

Source

pub fn into_inner(self) -> IdxVec<I, T>

Trait Implementations§

Source§

impl<I: Idx, T: Clone> Clone for ExtendedIdxVec<I, T>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<I: Debug + Idx, T: Debug> Debug for ExtendedIdxVec<I, T>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<I: Idx, T> Default for ExtendedIdxVec<I, T>

Source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<I, T> Freeze for ExtendedIdxVec<I, T>

§

impl<I, T> RefUnwindSafe for ExtendedIdxVec<I, T>

§

impl<I, T> Send for ExtendedIdxVec<I, T>
where I: Send, T: Send,

§

impl<I, T> Sync for ExtendedIdxVec<I, T>
where I: Sync, T: Sync,

§

impl<I, T> Unpin for ExtendedIdxVec<I, T>
where I: Unpin,

§

impl<I, T> UnwindSafe for ExtendedIdxVec<I, T>
where I: UnwindSafe, 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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> 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.