pub struct AttrSparseVec<T: AttributeBind + AttributeUpdate> { /* private fields */ }
Expand description
Custom storage structure for attributes
This structured is used to store user-defined attributes using a vector of Option<T>
items.
This means that valid attributes value may be separated by an arbitrary number of None
.
This implementation should favor access logic over locality of reference.
§Generics
T: AttributeBind + AttributeUpdate
– Type of the stored attributes.
§Example
This type is not meant to be used directly but used along the AttributeBind
trait.
Implementations§
Source§impl<T: AttributeBind + AttributeUpdate> AttrSparseVec<T>
impl<T: AttributeBind + AttributeUpdate> AttrSparseVec<T>
Sourcepub fn allocated_size(&self) -> usize
Available on crate feature utils
only.
pub fn allocated_size(&self) -> usize
utils
only.Return the amount of space allocated for the storage.
Sourcepub fn effective_size(&self) -> usize
Available on crate feature utils
only.
pub fn effective_size(&self) -> usize
utils
only.Return the total amount of space used by the storage.
Trait Implementations§
Source§impl<A: AttributeBind + AttributeUpdate> AttributeStorage<A> for AttrSparseVec<A>
impl<A: AttributeBind + AttributeUpdate> AttributeStorage<A> for AttrSparseVec<A>
Source§fn force_write(
&self,
id: <A as AttributeBind>::IdentifierType,
val: A,
) -> Option<A>
fn force_write( &self, id: <A as AttributeBind>::IdentifierType, val: A, ) -> Option<A>
Write the value of an element at a given index and return the old value. Read more
Source§fn write(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
val: A,
) -> StmResult<Option<A>>
fn write( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, val: A, ) -> StmResult<Option<A>>
Write the value of an element at a given index and return the old value. Read more
Source§fn force_read(&self, id: <A as AttributeBind>::IdentifierType) -> Option<A>
fn force_read(&self, id: <A as AttributeBind>::IdentifierType) -> Option<A>
Read the value of an element at a given index. Read more
Source§fn read(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
) -> StmResult<Option<A>>
fn read( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, ) -> StmResult<Option<A>>
Read the value of an element at a given index. Read more
Source§fn force_remove(&self, id: <A as AttributeBind>::IdentifierType) -> Option<A>
fn force_remove(&self, id: <A as AttributeBind>::IdentifierType) -> Option<A>
Remove the value at a given index and return it. Read more
Source§fn remove(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
) -> StmResult<Option<A>>
fn remove( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, ) -> StmResult<Option<A>>
Remove the value at a given index and return it. Read more
Source§impl<T: Debug + AttributeBind + AttributeUpdate> Debug for AttrSparseVec<T>
impl<T: Debug + AttributeBind + AttributeUpdate> Debug for AttrSparseVec<T>
Source§impl<A: AttributeBind + AttributeUpdate> UnknownAttributeStorage for AttrSparseVec<A>
impl<A: AttributeBind + AttributeUpdate> UnknownAttributeStorage for AttrSparseVec<A>
Source§fn n_attributes(&self) -> usize
fn n_attributes(&self) -> usize
Return the number of stored attributes, i.e. the number of used slots in the storage, not
its length.
Source§fn merge(
&self,
trans: &mut Transaction,
out: DartIdType,
lhs_inp: DartIdType,
rhs_inp: DartIdType,
) -> StmResult<()>
fn merge( &self, trans: &mut Transaction, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType, ) -> StmResult<()>
Merge attributes at specified index Read more
Source§fn try_merge(
&self,
trans: &mut Transaction,
out: DartIdType,
lhs_inp: DartIdType,
rhs_inp: DartIdType,
) -> CMapResult<()>
fn try_merge( &self, trans: &mut Transaction, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType, ) -> CMapResult<()>
Merge attributes at specified index Read more
Source§fn split(
&self,
trans: &mut Transaction,
lhs_out: DartIdType,
rhs_out: DartIdType,
inp: DartIdType,
) -> StmResult<()>
fn split( &self, trans: &mut Transaction, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType, ) -> StmResult<()>
Split attribute to specified indices Read more
Source§fn try_split(
&self,
trans: &mut Transaction,
lhs_out: DartIdType,
rhs_out: DartIdType,
inp: DartIdType,
) -> CMapResult<()>
fn try_split( &self, trans: &mut Transaction, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType, ) -> CMapResult<()>
Split attribute to specified indices Read more
Source§fn force_merge(&self, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType)
fn force_merge(&self, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType)
Merge attributes at specified index Read more
Source§fn force_split(&self, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType)
fn force_split(&self, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType)
Split attribute to specified indices Read more
impl<A: AttributeBind + AttributeUpdate> Send for AttrSparseVec<A>
impl<A: AttributeBind + AttributeUpdate> Sync for AttrSparseVec<A>
Auto Trait Implementations§
impl<T> Freeze for AttrSparseVec<T>
impl<T> !RefUnwindSafe for AttrSparseVec<T>
impl<T> Unpin for AttrSparseVec<T>where
T: Unpin,
impl<T> !UnwindSafe for AttrSparseVec<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.