[docs] Add docs to the 'template' module

This commit is contained in:
Steve Myers 2020-12-13 20:35:59 -08:00
parent 60e5cf1f8a
commit 4e771d6546
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051

View File

@ -60,6 +60,7 @@ pub type DescriptorTemplateOut = (ExtendedDescriptor, KeyMap, ValidNetworks);
/// }
/// ```
pub trait DescriptorTemplate {
/// Build the complete descriptor
fn build(self) -> Result<DescriptorTemplateOut, KeyError>;
}