pub struct SubRangeBinding {
pub expression: Option<String>,
pub from: Position,
}Expand description
A sub-range binding within a generated range.
Fields§
§expression: Option<String>The JS expression evaluating to the variable’s value. None = unavailable.
from: PositionStart position of this sub-range within the generated range.
Trait Implementations§
Source§impl Clone for SubRangeBinding
impl Clone for SubRangeBinding
Source§fn clone(&self) -> SubRangeBinding
fn clone(&self) -> SubRangeBinding
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 moreSource§impl Debug for SubRangeBinding
impl Debug for SubRangeBinding
Source§impl PartialEq for SubRangeBinding
impl PartialEq for SubRangeBinding
impl Eq for SubRangeBinding
impl StructuralPartialEq for SubRangeBinding
Auto Trait Implementations§
impl Freeze for SubRangeBinding
impl RefUnwindSafe for SubRangeBinding
impl Send for SubRangeBinding
impl Sync for SubRangeBinding
impl Unpin for SubRangeBinding
impl UnsafeUnpin for SubRangeBinding
impl UnwindSafe for SubRangeBinding
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