pub enum Binding {
Expression(String),
Unavailable,
SubRanges(Vec<SubRangeBinding>),
}Expand description
A binding expression for a variable in a generated range.
Variants§
Expression(String)
Variable is available via this JS expression.
Variable is not available in this range.
SubRanges(Vec<SubRangeBinding>)
Variable has different bindings in different sub-ranges.
Trait Implementations§
impl Eq for Binding
impl StructuralPartialEq for Binding
Auto Trait Implementations§
impl Freeze for Binding
impl RefUnwindSafe for Binding
impl Send for Binding
impl Sync for Binding
impl Unpin for Binding
impl UnsafeUnpin for Binding
impl UnwindSafe for Binding
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