Enum moore_svlog::ParamEnvBinding [−][src]
pub enum ParamEnvBinding<T> {
Direct(T),
Indirect(NodeEnvId),
}
Expand description
A binding in a parameter environment.
Variants
A direct binding, directly assigning a type or value to a node.
Indirect(NodeEnvId)
An indirect binding, pointing at another node’s type or value.
Tuple Fields of Indirect
0: NodeEnvId
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<T> RefUnwindSafe for ParamEnvBinding<T> where
T: RefUnwindSafe,
impl<T> Send for ParamEnvBinding<T> where
T: Send,
impl<T> Sync for ParamEnvBinding<T> where
T: Sync,
impl<T> Unpin for ParamEnvBinding<T> where
T: Unpin,
impl<T> UnwindSafe for ParamEnvBinding<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more