Trait fuels_core::traits::Tokenizable
source · pub trait Tokenizable {
// Required methods
fn from_token(token: Token) -> Result<Self>
where Self: Sized;
fn into_token(self) -> Token;
}
Required Methods§
sourcefn from_token(token: Token) -> Result<Self>where
Self: Sized,
fn from_token(token: Token) -> Result<Self>where
Self: Sized,
Converts a Token
into expected type.
sourcefn into_token(self) -> Token
fn into_token(self) -> Token
Converts a specified type back into token.