Skip to main content

SessionSlab

Struct SessionSlab 

Source
pub struct SessionSlab<T> { /* private fields */ }
Expand description

Generational slab of sessions.

Implementations§

Source§

impl<T> SessionSlab<T>

Source

pub fn new(capacity: usize) -> Result<Self, SlabError>

Pre-allocates capacity slots (no T constructed yet).

§Errors

SlabError::Capacity when capacity is 0 or exceeds MAX_SLOTS.

Source

pub fn insert(&mut self, value: T) -> Result<(u32, u16), SlabError>

Inserts a value, returning (slot, generation).

§Errors

SlabError::Exhausted when every slot is live.

Source

pub fn remove(&mut self, slot: u32) -> Option<T>

Removes a value. The slot’s generation increments immediately so any in-flight token for the old generation becomes stale on reuse.

Source

pub fn get(&self, slot: u32) -> Option<&T>

Immutable access.

Source

pub fn get_mut(&mut self, slot: u32) -> Option<&mut T>

Mutable access.

Source

pub fn generation(&self, slot: u32) -> u16

Generation currently assigned to a slot.

Source

pub fn len(&self) -> usize

Number of live sessions.

Source

pub fn is_empty(&self) -> bool

true when no sessions are live.

Source

pub fn matches(&self, slot: u32, generation: u16) -> bool

True when the slot is live with the given generation (token check).

Source

pub fn live(&self) -> Vec<(u32, u16)>

Iterates all live (slot, generation) pairs.

Trait Implementations§

Source§

impl<T> GenerationBump<T> for SessionSlab<T>

Source§

fn bump_generation(&mut self, slot: u32)

Increments the slot generation, invalidating stale tokens.

Auto Trait Implementations§

§

impl<T> Freeze for SessionSlab<T>
where Box<[Entry<T>]>: Freeze,

§

impl<T> RefUnwindSafe for SessionSlab<T>
where Box<[Entry<T>]>: RefUnwindSafe,

§

impl<T> Send for SessionSlab<T>
where Box<[Entry<T>]>: Send,

§

impl<T> Sync for SessionSlab<T>
where Box<[Entry<T>]>: Sync,

§

impl<T> Unpin for SessionSlab<T>
where Box<[Entry<T>]>: Unpin,

§

impl<T> UnsafeUnpin for SessionSlab<T>
where Box<[Entry<T>]>: UnsafeUnpin,

§

impl<T> UnwindSafe for SessionSlab<T>
where Box<[Entry<T>]>: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V