Struct ic_stable_structures::vec::Vec

source ·
pub struct Vec<T: Storable, M: Memory>(/* private fields */);
Expand description

An implementation of growable arrays in stable memory.

Implementations§

source§

impl<T: Storable, M: Memory> Vec<T, M>

source

pub fn new(memory: M) -> Result<Self, GrowFailed>

Creates a new empty vector in the specified memory, overwriting any data structures the memory might have contained previously.

Complexity: O(1)

source

pub fn init(memory: M) -> Result<Self, InitError>

Initializes a vector in the specified memory.

Complexity: O(1)

PRECONDITION: the memory is either empty or contains a valid stable vector.

source

pub fn into_memory(self) -> M

Returns the underlying memory instance.

source

pub fn is_empty(&self) -> bool

Returns true if the vector is empty.

Complexity: O(1)

source

pub fn len(&self) -> u64

Returns the number of items in the vector.

Complexity: O(1)

source

pub fn set(&self, index: u64, item: &T)

Sets the item at the specified index to the specified value.

Complexity: O(max_size(T))

PRECONDITION: index < self.len()

source

pub fn get(&self, index: u64) -> Option<T>

Returns the item at the specified index.

Complexity: O(max_size(T))

source

pub fn push(&self, item: &T) -> Result<(), GrowFailed>

Adds a new item at the end of the vector.

Complexity: O(max_size(T))

source

pub fn pop(&self) -> Option<T>

Removes the item at the end of the vector.

Complexity: O(max_size(T))

source

pub fn iter(&self) -> impl DoubleEndedIterator<Item = T> + '_

Trait Implementations§

source§

impl<T: Storable + Debug, M: Memory> Debug for Vec<T, M>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, M> Freeze for Vec<T, M>
where M: Freeze,

§

impl<T, M> RefUnwindSafe for Vec<T, M>

§

impl<T, M> Send for Vec<T, M>
where M: Send, T: Send,

§

impl<T, M> Sync for Vec<T, M>
where M: Sync, T: Sync,

§

impl<T, M> Unpin for Vec<T, M>
where M: Unpin, T: Unpin,

§

impl<T, M> UnwindSafe for Vec<T, M>
where M: 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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.