pub struct Store {
pub def: Def,
pub ident: &'static str,
pub canister: &'static str,
pub data_memory_id: u8,
pub index_memory_id: u8,
}Expand description
Store
Schema node describing a stable IC BTreeMap pair that stores:
- primary entity data
- all index data for that entity
Fields§
§def: Def§ident: &'static str§canister: &'static str§data_memory_id: u8§index_memory_id: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for Store
impl RefUnwindSafe for Store
impl Send for Store
impl Sync for Store
impl Unpin for Store
impl UnsafeUnpin for Store
impl UnwindSafe for Store
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