pub trait IsRepresentable<A>: PureOrWrapped<A> {
    // Required method
    fn is_representable(&self) -> bool;
}

Required Methods§

source

fn is_representable(&self) -> bool

The entity can be represented or already represented.

Implementors§

source§

impl<A, B> IsRepresentable<A> for Bwhere B: PureOrWrapped<A> + IsRepresentation,

This is default generic implementation for IsRepresentable trait.