Struct rune::Sources

source ·
pub struct Sources { /* private fields */ }
Expand description

A collection of source files.

Implementations§

source§

impl Sources

source

pub fn new() -> Self

Construct a new collection of sources.

source

pub fn insert(&mut self, source: Source) -> Result<SourceId>

Insert a source and return its SourceId.

§Examples
use rune::{Sources, Source};

let mut sources = Sources::new();
let id = sources.insert(Source::new("<memory>", "pub fn main() { 10 }")?)?;
let id2 = sources.insert(Source::new("<memory>", "pub fn main() { 10 }")?)?;
assert_ne!(id, id2);
source

pub fn get(&self, id: SourceId) -> Option<&Source>

Get the source matching the given source id.

§Examples
use rune::{Sources, Source};

let mut sources = Sources::new();
let id = sources.insert(Source::new("<memory>", "pub fn main() { 10 }")?)?;

let source = sources.get(id).context("expected source")?;

assert_eq!(source.name(), "<memory>");

Trait Implementations§

source§

impl Debug for Sources

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Sources

source§

fn default() -> Sources

Returns the “default value” for a type. Read more
source§

impl<'a> Files<'a> for Sources

§

type FileId = SourceId

A unique identifier for files in the file provider. This will be used for rendering diagnostic::Labels in the corresponding source files.
§

type Name = &'a str

The user-facing name of a file, to be displayed in diagnostics.
§

type Source = &'a str

The source code of a file.
source§

fn name(&'a self, file_id: SourceId) -> Result<Self::Name, Error>

The user-facing name of a file.
source§

fn source(&'a self, file_id: SourceId) -> Result<Self::Source, Error>

The source code of a file.
source§

fn line_index( &self, file_id: SourceId, byte_index: usize ) -> Result<usize, Error>

The index of the line at the given byte index. If the byte index is past the end of the file, returns the maximum line index in the file. This means that this function only fails if the file is not present. Read more
source§

fn line_range( &self, file_id: SourceId, line_index: usize ) -> Result<Range<usize>, Error>

The byte range of line in the source of the file.
source§

fn line_number( &'a self, id: Self::FileId, line_index: usize ) -> Result<usize, Error>

The user-facing line number at the given line index. It is not necessarily checked that the specified line index is actually in the file. Read more
source§

fn column_number( &'a self, id: Self::FileId, line_index: usize, byte_index: usize ) -> Result<usize, Error>

The user-facing column number at the given line index and byte index. Read more
source§

fn location( &'a self, id: Self::FileId, byte_index: usize ) -> Result<Location, Error>

Convenience method for returning line and column number at the given byte index in the file.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more