pub struct AttrSparseVec<T: AttributeBind + AttributeUpdate + Copy> { /* 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 + Copy> AttrSparseVec<T>
impl<T: AttributeBind + AttributeUpdate + Copy> 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 + Copy> AttributeStorage<A> for AttrSparseVec<A>
impl<A: AttributeBind + AttributeUpdate + Copy> AttributeStorage<A> for AttrSparseVec<A>
Source§fn set(&self, id: A::IdentifierType, val: A)
fn set(&self, id: A::IdentifierType, val: A)
Setter Read more
Source§fn set_transac(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
val: A,
) -> Result<(), StmError>
fn set_transac( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, val: A, ) -> Result<(), StmError>
Transactional
set
Read moreSource§fn insert(&self, id: A::IdentifierType, val: A)
fn insert(&self, id: A::IdentifierType, val: A)
Setter Read more
Source§fn insert_transac(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
val: A,
) -> Result<(), StmError>
fn insert_transac( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, val: A, ) -> Result<(), StmError>
Transactional
insert
Read moreSource§fn get_transac(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
) -> Result<Option<A>, StmError>
fn get_transac( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, ) -> Result<Option<A>, StmError>
Transactional
get
Read moreSource§fn replace_transac(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
val: A,
) -> Result<Option<A>, StmError>
fn replace_transac( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, val: A, ) -> Result<Option<A>, StmError>
Transactional
replace
Read moreSource§fn remove(&self, id: A::IdentifierType) -> Option<A>
fn remove(&self, id: A::IdentifierType) -> Option<A>
Remove an item from the storage and return it Read more
Source§fn remove_transac(
&self,
trans: &mut Transaction,
id: <A as AttributeBind>::IdentifierType,
) -> Result<Option<A>, StmError>
fn remove_transac( &self, trans: &mut Transaction, id: <A as AttributeBind>::IdentifierType, ) -> Result<Option<A>, StmError>
Transactional
remove
Read moreSource§impl<T: Debug + AttributeBind + AttributeUpdate + Copy> Debug for AttrSparseVec<T>
impl<T: Debug + AttributeBind + AttributeUpdate + Copy> Debug for AttrSparseVec<T>
Source§impl<A: AttributeBind + AttributeUpdate + Copy> UnknownAttributeStorage for AttrSparseVec<A>
impl<A: AttributeBind + AttributeUpdate + Copy> 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, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType)
fn merge(&self, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType)
Merge attributes at specified index Read more
Source§fn merge_transac(
&self,
trans: &mut Transaction,
out: DartIdType,
lhs_inp: DartIdType,
rhs_inp: DartIdType,
) -> Result<(), StmError>
fn merge_transac( &self, trans: &mut Transaction, out: DartIdType, lhs_inp: DartIdType, rhs_inp: DartIdType, ) -> Result<(), StmError>
Transactional
merge
Read moreSource§fn split(&self, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType)
fn split(&self, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType)
Split attribute to specified indices Read more
Source§fn split_transac(
&self,
trans: &mut Transaction,
lhs_out: DartIdType,
rhs_out: DartIdType,
inp: DartIdType,
) -> Result<(), StmError>
fn split_transac( &self, trans: &mut Transaction, lhs_out: DartIdType, rhs_out: DartIdType, inp: DartIdType, ) -> Result<(), StmError>
Transactional
split
Read moreimpl<A: AttributeBind + AttributeUpdate + Copy> Send for AttrSparseVec<A>
impl<A: AttributeBind + AttributeUpdate + Copy> 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.