Trait geo_aid::script::math::Reconstruct

source ·
pub trait Reconstruct {
    // Required method
    fn reconstruct(self, ctx: &mut ReconstructCtx<'_>) -> Self;
}

Required Methods§

source

fn reconstruct(self, ctx: &mut ReconstructCtx<'_>) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T: Reconstruct> Reconstruct for Option<T>

source§

fn reconstruct(self, ctx: &mut ReconstructCtx<'_>) -> Self

source§

impl<T: Reconstruct> Reconstruct for Box<T>

source§

fn reconstruct(self, ctx: &mut ReconstructCtx<'_>) -> Self

source§

impl<T: Reconstruct> Reconstruct for Vec<T>

source§

fn reconstruct(self, ctx: &mut ReconstructCtx<'_>) -> Self

Implementors§