DynamicTerminalManager

Struct DynamicTerminalManager 

Source
pub struct DynamicTerminalManager<'id, T, N, ET, const TERMINALS: usize> { /* private fields */ }

Trait Implementations§

Source§

impl<'id, T, N, ET, const TERMINALS: usize> TerminalManager<'id, N, ET, TERMINALS> for DynamicTerminalManager<'id, T, N, ET, TERMINALS>
where T: Eq + Hash, N: NodeBase, ET: Tag,

Source§

type TerminalNode = T

The terminal node type
Source§

type TerminalNodeRef<'a> = &'a T where Self: 'a

Source§

type Iterator<'a> = DynamicTerminalIterator<'a, 'id, T, N, ET> where Self: 'a, 'id: 'a

Iterator over all terminal nodes (as Edges), see Self::iter()
Source§

fn with_capacity(capacity: u32) -> Self

Create a new TerminalManager Read more
Source§

fn len(&self) -> usize

Get the number of currently stored terminals
Source§

unsafe fn get_terminal(&self, id: usize) -> &T

Get the terminal for id Read more
Source§

unsafe fn retain(&self, id: usize)

Increment the reference counter of the terminal id Read more
Source§

unsafe fn release(&self, id: usize)

Decrement the reference counter of the terminal id Read more
Source§

fn get_edge(&self, terminal: T) -> AllocResult<Edge<'id, N, ET>>

Add a terminal to this manager (if it does not already exist) and return an Edge pointing to it
Source§

fn iter<'a>(&'a self) -> Self::Iterator<'a>
where Self: 'a,

Iterate over all terminals
Source§

fn gc(&self) -> u32

Garbage collection: remove unused terminals
Source§

fn is_empty(&self) -> bool

Returns true iff currently no terminals are stored
Source§

impl<T: Send + Sync, N: Send + Sync, ET: Send + Sync, const TERMINALS: usize> Send for DynamicTerminalManager<'_, T, N, ET, TERMINALS>

Source§

impl<T: Send + Sync, N: Send + Sync, ET: Send + Sync, const TERMINALS: usize> Sync for DynamicTerminalManager<'_, T, N, ET, TERMINALS>

Auto Trait Implementations§

§

impl<'id, T, N, ET, const TERMINALS: usize> !Freeze for DynamicTerminalManager<'id, T, N, ET, TERMINALS>

§

impl<'id, T, N, ET, const TERMINALS: usize> !RefUnwindSafe for DynamicTerminalManager<'id, T, N, ET, TERMINALS>

§

impl<'id, T, N, ET, const TERMINALS: usize> Unpin for DynamicTerminalManager<'id, T, N, ET, TERMINALS>
where N: Unpin, ET: Unpin,

§

impl<'id, T, N, ET, const TERMINALS: usize> UnwindSafe for DynamicTerminalManager<'id, T, N, ET, TERMINALS>
where T: UnwindSafe, N: UnwindSafe, ET: 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, 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.