Trait sycamore_router::TryFromParam[][src]

pub trait TryFromParam: Sized {
    fn try_from_param(param: &str) -> Option<Self>;
}
Expand description

Fallible conversion between a param capture into a value.

Implemented for all types that implement FromStr by default.

Required methods

Creates a new value of this type from the given param. Returns None if the param cannot be converted into a value of this type.

Implementors