pub enum VariableType {
Local,
Component,
Signal(SignalType),
}Variants
Local
Component
Signal(SignalType)
Trait Implementations
sourceimpl Clone for VariableType
impl Clone for VariableType
sourcefn clone(&self) -> VariableType
fn clone(&self) -> VariableType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Display for VariableType
impl Display for VariableType
sourceimpl Hash for VariableType
impl Hash for VariableType
sourceimpl PartialEq<VariableType> for VariableType
impl PartialEq<VariableType> for VariableType
sourcefn eq(&self, other: &VariableType) -> bool
fn eq(&self, other: &VariableType) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Eq for VariableType
impl StructuralEq for VariableType
impl StructuralPartialEq for VariableType
Auto Trait Implementations
impl RefUnwindSafe for VariableType
impl Send for VariableType
impl Sync for VariableType
impl Unpin for VariableType
impl UnwindSafe for VariableType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more