pub struct SourceIndex {
pub sources: Vec<SourceArtifact>,
pub spans: Vec<SourceSpan>,
}Expand description
A source index mapping sources and spans.
Fields§
§sources: Vec<SourceArtifact>§spans: Vec<SourceSpan>Trait Implementations§
Source§impl Clone for SourceIndex
impl Clone for SourceIndex
Source§fn clone(&self) -> SourceIndex
fn clone(&self) -> SourceIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SourceIndex
impl Debug for SourceIndex
Source§impl<'de> Deserialize<'de> for SourceIndex
impl<'de> Deserialize<'de> for SourceIndex
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 SourceIndex
impl RefUnwindSafe for SourceIndex
impl Send for SourceIndex
impl Sync for SourceIndex
impl Unpin for SourceIndex
impl UnsafeUnpin for SourceIndex
impl UnwindSafe for SourceIndex
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