Skip to main content

Table

Struct Table 

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

The sessions this instance is holding.

Implementations§

Source§

impl<T> Table<T>

Source

pub fn new() -> Self

An empty table.

Source

pub fn len(&self) -> usize

How many sessions are open.

Source

pub fn is_empty(&self) -> bool

Whether this instance is holding nothing, which is half of concept 8’s exit rule.

Source

pub fn iter(&self) -> impl Iterator<Item = &T>

Everything held, in the order it was opened.

Source

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut T>

Everything held, mutably.

Source

pub fn insert(&mut self, container: &Path, held: T) -> Result<()>

Take a session in, keyed on what container is now.

§Errors

Where the container’s identity cannot be established.

Source

pub fn find_mut(&mut self, container: &Path) -> Option<&mut T>

The session already open on this container, if there is one.

A container that is not there matches nothing rather than failing: an invocation naming a path that does not exist has a different problem, and it is not this function’s to report.

Source

pub fn refresh(&mut self, container: &Path)

Re-read the identity of a session’s container.

Called after a write-back, which renamed a new file over the container and so gave it a new inode. Without this the entry keeps matching by path and stops matching by identity, which quietly loses the hard-link half of the guarantee for the rest of the session.

A container that has gone keeps the identity it had. There is nothing better to record, and the path arm still finds the session so that the person can be told.

Source

pub fn remove(&mut self, container: &Path) -> Option<T>

Drop a session and hand it back.

Source

pub fn drain(&mut self) -> impl Iterator<Item = T> + '_

Take everything, for the shutdown that closes each in turn.

Trait Implementations§

Source§

impl<T: Debug> Debug for Table<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Default for Table<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T> Freeze for Table<T>
where Vec<Entry<T>>: Freeze,

§

impl<T> RefUnwindSafe for Table<T>
where Vec<Entry<T>>: RefUnwindSafe,

§

impl<T> Send for Table<T>
where Vec<Entry<T>>: Send,

§

impl<T> Sync for Table<T>
where Vec<Entry<T>>: Sync,

§

impl<T> Unpin for Table<T>
where Vec<Entry<T>>: Unpin,

§

impl<T> UnsafeUnpin for Table<T>
where Vec<Entry<T>>: UnsafeUnpin,

§

impl<T> UnwindSafe for Table<T>
where Vec<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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> NoneValue for T
where T: Default,

Source§

type NoneType = T

Source§

fn null_value() -> T

The none-equivalent value.
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<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more