[][src]Struct zamm_yin::node_wrappers::BaseNode

pub struct BaseNode { /* fields omitted */ }

Implementation for the most basic of node wrappers. Offers no additional functionality.

Implementations

impl BaseNode[src]

pub fn new() -> Self[src]

Create a new node.

Trait Implementations

impl BaseNodeTrait<BaseNode> for BaseNode[src]

impl Clone for BaseNode[src]

impl CommonNodeTrait for BaseNode[src]

impl Copy for BaseNode[src]

impl Debug for BaseNode[src]

impl Eq for BaseNode[src]

impl From<BaseNode> for FinalNode[src]

impl From<BaseNode> for InheritanceNode[src]

impl From<usize> for BaseNode[src]

impl Hash for BaseNode[src]

impl Ord for BaseNode[src]

impl PartialEq<BaseNode> for BaseNode[src]

impl PartialOrd<BaseNode> for BaseNode[src]

impl<'a> TryFrom<&'a str> for BaseNode[src]

type Error = String

The type returned in the event of a conversion error.

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<N> NodeTrait for N where
    N: Copy + Ord + Hash
[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> Typeable for T where
    T: Any