pub struct CapturedVariable {
pub name: String,
pub is_list: bool,
pub is_key: bool,
pub is_filldown: bool,
pub is_fillup: bool,
}Expand description
Metadata about a variable captured by a rule.
Fields§
§name: String§is_list: bool§is_key: bool§is_filldown: bool§is_fillup: boolTrait Implementations§
Source§impl Clone for CapturedVariable
impl Clone for CapturedVariable
Source§fn clone(&self) -> CapturedVariable
fn clone(&self) -> CapturedVariable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CapturedVariable
impl RefUnwindSafe for CapturedVariable
impl Send for CapturedVariable
impl Sync for CapturedVariable
impl Unpin for CapturedVariable
impl UnwindSafe for CapturedVariable
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