pub trait GetOutputType {
    // Required method
    fn get_output_type(&self) -> Option<OutputType>;
}

Required Methods§

source

fn get_output_type(&self) -> Option<OutputType>

| @return | | The OutputType of the scriptPubKey(s) | produced by this descriptor. Or nullopt | if indeterminate (multiple or none) |

Implementors§