[][src]Struct dyon::Link

pub struct Link { /* fields omitted */ }

Stores a link structure.

Implementations

impl Link[src]

pub fn new() -> Link[src]

Creates a new link.

pub fn head(&self) -> Option<Box<Variable>>[src]

Gets the first item of the link.

pub fn tip(&self) -> Option<Box<Variable>>[src]

Gets the last item of the link.

pub fn tail(&self) -> Link[src]

Gets the tail of the link.

The tail is the whole link except the first item.

pub fn neck(&self) -> Link[src]

Gets the neck of the link.

The neck is the whole link except the last item.

pub fn is_empty(&self) -> bool[src]

Returns true if the link is empty.

pub fn add(&self, other: &Link) -> Link[src]

Adds another link.

pub fn push(&mut self, v: &Variable) -> Result<(), String>[src]

Pushes a variable to the link.

Trait Implementations

impl Clone for Link[src]

impl Debug for Link[src]

impl Default for Link[src]

Auto Trait Implementations

impl RefUnwindSafe for Link

impl Send for Link

impl Sync for Link

impl Unpin for Link

impl UnwindSafe for Link

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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