pub struct Variable {
pub custom_data: Option<CustomData>,
pub instance: Option<String<50usize>>,
pub name: String<50usize>,
}Expand description
Reference key to a component-variable.
Fields§
§custom_data: Option<CustomData>§instance: Option<String<50usize>>Name of instance in case the variable exists as multiple instances. Case Insensitive. strongly advised to use Camel Case.
name: String<50usize>Name of the variable. Name should be taken from the list of standardized variable names whenever possible. Case Insensitive. strongly advised to use Camel Case.
Trait Implementations§
impl Eq for Variable
impl StructuralPartialEq for Variable
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnsafeUnpin for Variable
impl UnwindSafe for Variable
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