pub struct VariableTypeInfo {
pub scalar: String,
pub list: String,
}Expand description
Describes the two variable types in the capture system.
Fields§
§scalar: StringHow scalar variables (from capture) behave
list: StringHow list variables (from capture_append) behave
Trait Implementations§
Source§impl Debug for VariableTypeInfo
impl Debug for VariableTypeInfo
Source§impl<'de> Deserialize<'de> for VariableTypeInfo
impl<'de> Deserialize<'de> for VariableTypeInfo
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
Auto Trait Implementations§
impl Freeze for VariableTypeInfo
impl RefUnwindSafe for VariableTypeInfo
impl Send for VariableTypeInfo
impl Sync for VariableTypeInfo
impl Unpin for VariableTypeInfo
impl UnsafeUnpin for VariableTypeInfo
impl UnwindSafe for VariableTypeInfo
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