[][src]Trait reset_recognizer::FromCaptures

pub trait FromCaptures: Sized {
    fn from_captures(caps: &Captures) -> Result<Self>;
}

Parse captures data into tuples

Required methods

fn from_captures(caps: &Captures) -> Result<Self>

Loading content...

Implementations on Foreign Types

impl<U: FromStr> FromCaptures for (U,)[src]

impl<U1: FromStr, U2: FromStr> FromCaptures for (U1, U2)[src]

impl<U1: FromStr, U2: FromStr, U3: FromStr> FromCaptures for (U1, U2, U3)[src]

impl<U1: FromStr, U2: FromStr, U3: FromStr, U4: FromStr> FromCaptures for (U1, U2, U3, U4)[src]

Loading content...

Implementors

Loading content...