[][src]Struct statefun::FunctionType

pub struct FunctionType { /* fields omitted */ }

A reference to a stateful function, consisting of a namespace and a name.

A function's type is part of a function's Address and serves as integral part of an individual function's identity.

Implementations

impl FunctionType[src]

pub fn new(namespace: &str, name: &str) -> FunctionType[src]

Creates a new FunctionType from the given namespace and name.

Trait Implementations

impl Debug for FunctionType[src]

impl Display for FunctionType[src]

impl Eq for FunctionType[src]

impl Hash for FunctionType[src]

impl PartialEq<FunctionType> for FunctionType[src]

impl StructuralEq for FunctionType[src]

impl StructuralPartialEq for FunctionType[src]

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<T> ToString for T where
    T: Display + ?Sized
[src]

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.