pub trait Projectable<G, I>: Orbit<G, I>where
G: GroupProperties + CharacterProperties,{
type Projected<'p>
where Self: 'p;
// Required method
fn project_onto(&self, row: &G::RowSymbol) -> Self::Projected<'_>;
// Provided method
fn generate_orbit_algebra_terms<'a>(
&'a self,
row: &G::RowSymbol,
) -> impl Iterator<Item = Result<(&'a Character, I), Error>>
where I: 'a,
G: 'a { ... }
}Expand description
Trait to facilitate the application of a group projection operator.
Required Associated Types§
Required Methods§
Sourcefn project_onto(&self, row: &G::RowSymbol) -> Self::Projected<'_>
fn project_onto(&self, row: &G::RowSymbol) -> Self::Projected<'_>
Projects the orbit onto a symmetry subspace.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.