type ParseResult<'a> = Option<(MdTree<'a>, &'a [u8])>;Expand description
Output of a parse function
Aliased Type§
enum ParseResult<'a> {
    None,
    Some((MdTree<'a>, &'a [u8])),
}Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.