pub trait InnerValue: Clone + Debug {
type Element: Clone + Debug;
// Required method
fn value(&self) -> Value<Self::Element>;
}Expand description
Trait for accessing the value inside assigned circuit elements.
Required Associated Types§
Sourcetype Element: Clone + Debug
type Element: Clone + Debug
Represents the unassigned type corresponding to the InnerValue
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".