pub enum VariableBlockType {
Local,
Temp,
Input(ArgumentProperty),
Output,
Global,
InOut,
External,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VariableBlockType
impl Clone for VariableBlockType
Source§fn clone(&self) -> VariableBlockType
fn clone(&self) -> VariableBlockType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VariableBlockType
impl Debug for VariableBlockType
Source§impl<'de> Deserialize<'de> for VariableBlockType
impl<'de> Deserialize<'de> for VariableBlockType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for VariableBlockType
impl Display for VariableBlockType
Source§impl PartialEq for VariableBlockType
impl PartialEq for VariableBlockType
Source§fn eq(&self, other: &VariableBlockType) -> bool
fn eq(&self, other: &VariableBlockType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VariableBlockType
impl Serialize for VariableBlockType
impl Copy for VariableBlockType
impl Eq for VariableBlockType
impl StructuralPartialEq for VariableBlockType
Auto Trait Implementations§
impl Freeze for VariableBlockType
impl RefUnwindSafe for VariableBlockType
impl Send for VariableBlockType
impl Sync for VariableBlockType
impl Unpin for VariableBlockType
impl UnsafeUnpin for VariableBlockType
impl UnwindSafe for VariableBlockType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more