Trait safecast::Match[][src]

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