Construct

Trait Construct 

Source
pub trait Construct:
    Send
    + Sync
    + Copy
    + 'static { }
Expand description

The base trait for all ggmath types. Is automatically implemented for all types that implement Send, Sync, Copy, and ['static].

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.

Implementors§

Source§

impl<T: Send + Sync + Copy + 'static> Construct for T