Struct clojurust::clojure::rust::objects::Unique::SUnique[][src]

pub struct SUnique {
    pub map: Object,
    pub vect: Object,
}

A keyword storage structure

We will store all Strings used as reference to objects as usize.

As a String is added, it’s index is added in the map ObjHashMap.

Examples

Fields

map: Object

SPersistentMap of name: String -> id: usize

vect: Object

SPersistentVector index: usize -> value: String

Implementations

impl SUnique[src]

pub fn new() -> Object[src]

Trait Implementations

impl Default for SUnique[src]

impl Drop for SUnique[src]

impl IObject for SUnique[src]

impl Send for SUnique[src]

impl Sync for SUnique[src]

impl Unique for SUnique[src]

fn len(&self) -> ObjResult<usize>[src]

Size of SStrVector

fn get_name(&self, key: usize) -> ObjResult<String>[src]

Gives name of index

return None if doesn’t exist

fn get_or_make_index(&mut self, name: &str) -> ObjResult<usize>[src]

Gives index of name

Create name and index is they doesn’t exist

fn get_index(&mut self, name: &str) -> ObjResult<usize>[src]

Gives index of name

return Error if doesn’t exist

fn test(&self, name: &str) -> ObjResult<bool>[src]

Tests if name exists

Auto Trait Implementations

impl !RefUnwindSafe for SUnique

impl Unpin for SUnique

impl !UnwindSafe for SUnique

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<S> CastArc for S where
    S: CastFromSync + ?Sized
[src]

impl<S> CastBox for S where
    S: CastFrom + ?Sized
[src]

impl<T> CastFrom for T where
    T: 'static + Any
[src]

impl<T> CastFromSync for T where
    T: 'static + Sync + Send
[src]

impl<S> CastMut for S where
    S: CastFrom + ?Sized
[src]

impl<S> CastRc for S where
    S: CastFrom + ?Sized
[src]

impl<S> CastRef for S where
    S: CastFrom + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.