Struct panoramix::elements::backend::ListMutationItem[][src]

pub struct ListMutationItem<Key> {
    pub index: usize,
    pub preserved_count_before: usize,
    pub removed_count: usize,
    pub inserted_keys: Vec<Key>,
}

Fields

index: usizepreserved_count_before: usizeremoved_count: usizeinserted_keys: Vec<Key>

Trait Implementations

impl<Key: Clone> Clone for ListMutationItem<Key>[src]

impl<Key: Debug> Debug for ListMutationItem<Key>[src]

impl<Key: Default> Default for ListMutationItem<Key>[src]

impl<Key: Eq> Eq for ListMutationItem<Key>[src]

impl<Key: Hash> Hash for ListMutationItem<Key>[src]

impl<Key: Ord> Ord for ListMutationItem<Key>[src]

impl<Key: PartialEq> PartialEq<ListMutationItem<Key>> for ListMutationItem<Key>[src]

impl<Key: PartialOrd> PartialOrd<ListMutationItem<Key>> for ListMutationItem<Key>[src]

impl<Key> StructuralEq for ListMutationItem<Key>[src]

impl<Key> StructuralPartialEq for ListMutationItem<Key>[src]

Auto Trait Implementations

impl<Key> RefUnwindSafe for ListMutationItem<Key> where
    Key: RefUnwindSafe

impl<Key> Send for ListMutationItem<Key> where
    Key: Send

impl<Key> Sync for ListMutationItem<Key> where
    Key: Sync

impl<Key> Unpin for ListMutationItem<Key> where
    Key: Unpin

impl<Key> UnwindSafe for ListMutationItem<Key> where
    Key: UnwindSafe

Blanket Implementations

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

impl<T> AnyEq for T where
    T: Any + PartialEq<T>, 

impl<T> AnyState for T where
    T: Clone + Default + Debug + PartialEq<T> + 'static, 
[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> Instrument for T[src]

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

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

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

type Owned = T

The resulting type after obtaining ownership.

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.