Struct Set

Source
pub struct Set<'a, T> { /* private fields */ }
Expand description

A set of non-duplicate items.

On a high level, a Set<T> is equivalent to a Map<T, Empty>, but offers a more intuitive API similar to native HashSet and BTreeSet.

Implementations§

Source§

impl<'a, T> Set<'a, T>

Source

pub const fn new(namespace: &'a str, counter_namespace: &'static str) -> Self

Create a new instance of the item set with the given map and counter namespaces.

Source

pub fn count(&self, store: &dyn Storage) -> StdResult<u64>

Return the total amount of items in the set.

Source§

impl<'a, T> Set<'a, T>
where T: PrimaryKey<'a> + KeyDeserialize,

Source

pub fn contains(&self, store: &dyn Storage, item: T) -> bool

Returns true if the set contains an item

Source

pub fn insert(&self, store: &mut dyn Storage, item: T) -> StdResult<bool>

Adds an item to the set. Returns whether the item was newly added.

Source

pub fn remove(&self, store: &mut dyn Storage, item: T) -> StdResult<bool>

Remove an item from the set. Returns whether the item was present in the set.

Source§

impl<'a, T> Set<'a, T>
where T: PrimaryKey<'a> + KeyDeserialize,

Source

pub fn prefix(&self, p: T::Prefix) -> Prefix<T::Suffix, Empty, T::Suffix>

Access items in the set under the given prefix.\

Copied from cw-storage-plus: https://github.com/CosmWasm/cw-plus/blob/v0.14.0/packages/storage-plus/src/map.rs#L124-126

Source

pub fn items<'c>( &self, store: &'c dyn Storage, min: Option<Bound<'a, T>>, max: Option<Bound<'a, T>>, order: Order, ) -> Box<dyn Iterator<Item = StdResult<T::Output>> + 'c>
where T::Output: 'static,

Iterates items in the set with the specified bounds and ordering.

Source

pub fn clear(&self, store: &mut dyn Storage)

Delete all elements from the set.

Copied from cw-storage-plus: https://github.com/CosmWasm/cw-storage-plus/blob/v0.16.0/src/map.rs#L115-L132

Auto Trait Implementations§

§

impl<'a, T> Freeze for Set<'a, T>

§

impl<'a, T> RefUnwindSafe for Set<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for Set<'a, T>
where T: Send,

§

impl<'a, T> Sync for Set<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for Set<'a, T>
where T: Unpin,

§

impl<'a, T> UnwindSafe for Set<'a, T>
where 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<U> As for U

Source§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. 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> 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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V