Trait safecast::Match

source ·
pub trait Match: Sized {
    fn matches<T: TryCastFrom<Self>>(&self) -> bool { ... }
}
Expand description

Blanket implementation of a convenience method matches which allows calling can_cast_from with a type parameter. Do not implement this trait.

Provided Methods§

Returns true if self can be cast into the target type T.

Implementors§