Struct sppparse::SparseValue[][src]

pub struct SparseValue<'a, S> { /* fields omitted */ }

Implementations

impl<'a, S> SparseValue<'a, S>[src]

pub fn metadata(&self) -> Option<&'a SparseMetadata>[src]

impl<'a, S> SparseValue<'a, S> where
    S: DeserializeOwned + Serialize + SparsableTrait
[src]

pub fn try_deref_raw_pointer<T: 'static + DeserializeOwned + Serialize + SparsableTrait>(
    curr: &SparseValue<'_, S>,
    ptr: String,
    state_cell: Rc<RefCell<SparseState>>
) -> Result<SparseSelector<T>, SparseError>
[src]

Trait Implementations

impl<'a, S: Clone> Clone for SparseValue<'a, S>[src]

impl<'a, S: Debug> Debug for SparseValue<'a, S>[src]

impl<'a, S> Deref for SparseValue<'a, S> where
    S: DeserializeOwned + Serialize + SparsableTrait
[src]

type Target = S

The resulting type after dereferencing.

impl<'a, S> Display for SparseValue<'a, S> where
    S: DeserializeOwned + Serialize + SparsableTrait + Display
[src]

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for SparseValue<'a, S> where
    S: RefUnwindSafe

impl<'a, S> Send for SparseValue<'a, S> where
    S: Sync

impl<'a, S> Sync for SparseValue<'a, S> where
    S: Sync

impl<'a, S> Unpin for SparseValue<'a, S>

impl<'a, S> UnwindSafe for SparseValue<'a, S> where
    S: RefUnwindSafe

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<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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