pub trait TryIntoMethod<MethodType> {
    fn into_method(self) -> Result<MethodType>;
}

Required Methods

Implementations on Foreign Types

Implementors