pub trait Tokenizable {
    fn from_token(token: Token) -> Result<Self, InstantiationError>
    where
        Self: Sized
; fn into_token(self) -> Token; }

Required Methods

Converts a Token into expected type.

Converts a specified type back into token.

Implementations on Foreign Types

Implementors