[][src]Struct gulkana::Node

pub struct Node<Key: PartialEq + Clone, Item: Clone, LinkLabel: Clone> { /* fields omitted */ }

Methods

impl<KeyType: PartialEq + Clone, DataType: Clone, LinkLabel: Clone> Node<KeyType, DataType, LinkLabel>[src]

pub fn get_item(&self) -> Result<&DataType, DBOperationError>[src]

pub fn get_item_mut(&mut self) -> Result<&mut DataType, DBOperationError>[src]

Trait Implementations

impl<Key: Clone + PartialEq, Item: Clone, LinkLabel: Clone> Clone for Node<Key, Item, LinkLabel>[src]

impl<'de, Key: PartialEq + Clone, Item: Clone, LinkLabel: Clone> Deserialize<'de> for Node<Key, Item, LinkLabel> where
    Key: Deserialize<'de>,
    Item: Deserialize<'de>,
    LinkLabel: Deserialize<'de>, 
[src]

impl<Key: Eq + PartialEq + Clone, Item: Eq + Clone, LinkLabel: Eq + Clone> Eq for Node<Key, Item, LinkLabel>[src]

impl<Key: PartialEq + Clone, Item: PartialEq + Clone, LinkLabel: PartialEq + Clone> PartialEq<Node<Key, Item, LinkLabel>> for Node<Key, Item, LinkLabel>[src]

impl<Key: PartialEq + Clone, Item: Clone, LinkLabel: Clone> Serialize for Node<Key, Item, LinkLabel> where
    Key: Serialize,
    Item: Serialize,
    LinkLabel: Serialize
[src]

impl<Key: PartialEq + Clone, Item: Clone, LinkLabel: Clone> StructuralEq for Node<Key, Item, LinkLabel>[src]

impl<Key: PartialEq + Clone, Item: Clone, LinkLabel: Clone> StructuralPartialEq for Node<Key, Item, LinkLabel>[src]

Auto Trait Implementations

impl<Key, Item, LinkLabel> RefUnwindSafe for Node<Key, Item, LinkLabel> where
    Item: RefUnwindSafe,
    Key: RefUnwindSafe,
    LinkLabel: RefUnwindSafe

impl<Key, Item, LinkLabel> Send for Node<Key, Item, LinkLabel> where
    Item: Send,
    Key: Send,
    LinkLabel: Send

impl<Key, Item, LinkLabel> Sync for Node<Key, Item, LinkLabel> where
    Item: Sync,
    Key: Sync,
    LinkLabel: Sync

impl<Key, Item, LinkLabel> Unpin for Node<Key, Item, LinkLabel> where
    Item: Unpin,
    Key: Unpin,
    LinkLabel: Unpin

impl<Key, Item, LinkLabel> UnwindSafe for Node<Key, Item, LinkLabel> where
    Item: UnwindSafe,
    Key: UnwindSafe,
    LinkLabel: UnwindSafe

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,