pub struct IstanbulRange {
pub start: IstanbulPosition,
pub end: IstanbulPosition,
}Expand description
1-indexed line/column range matching Istanbul’s Range.
Fields§
§start: IstanbulPositionInclusive start position.
end: IstanbulPositionExclusive end position.
Trait Implementations§
Source§impl Clone for IstanbulRange
impl Clone for IstanbulRange
Source§fn clone(&self) -> IstanbulRange
fn clone(&self) -> IstanbulRange
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 IstanbulRange
impl Debug for IstanbulRange
Source§impl<'de> Deserialize<'de> for IstanbulRange
impl<'de> Deserialize<'de> for IstanbulRange
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 IstanbulRange
impl RefUnwindSafe for IstanbulRange
impl Send for IstanbulRange
impl Sync for IstanbulRange
impl Unpin for IstanbulRange
impl UnsafeUnpin for IstanbulRange
impl UnwindSafe for IstanbulRange
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