Trait x328_proto::IntoValue[][src]

pub trait IntoValue {
    fn into_value(self) -> Result<Value, Error>;
}

Trait to convert T: Into<i32> into a Value.

Required methods

fn into_value(self) -> Result<Value, Error>[src]

Try to convert self to a Value

Errors

Returns Error::InvalidValue if self isn’t a valid address.

Loading content...

Implementors

impl IntoValue for Value[src]

impl<T> IntoValue for T where
    T: TryInto<i32>, 
[src]

Loading content...