Trait common::IsRepresentable
source · pub trait IsRepresentable<A>: PureOrWrapped<A> {
// Required method
fn is_representable(&self) -> bool;
}
Required Methods§
sourcefn is_representable(&self) -> bool
fn is_representable(&self) -> bool
The entity can be represented or already represented.
Implementors§
impl<A, B> IsRepresentable<A> for Bwhere B: PureOrWrapped<A> + IsRepresentation,
This is default generic implementation for IsRepresentable trait.