Trait object::build::Item

source ·
pub trait Item {
    type Id: Id;

    // Required method
    fn is_deleted(&self) -> bool;
}
Expand description

An item in a Table.

Required Associated Types§

source

type Id: Id

The type of identifier for the item.

Required Methods§

source

fn is_deleted(&self) -> bool

Return True if the item is deleted.

Implementors§

source§

impl<'data> Item for Section<'data>

source§

impl<'data> Item for Segment<'data>

source§

impl<'data> Item for Version<'data>

source§

impl<'data> Item for VersionFile<'data>

source§

impl<'data, const DYNAMIC: bool> Item for Symbol<'data, DYNAMIC>

§

type Id = SymbolId<DYNAMIC>