pub struct DocumentInput { /* private fields */ }Expand description
One source document supplied to the project loader.
Implementations§
Source§impl DocumentInput
impl DocumentInput
Sourcepub fn new(
source_id: SourceId,
origin: DocumentOrigin,
source: impl Into<Arc<str>>,
) -> Self
pub fn new( source_id: SourceId, origin: DocumentOrigin, source: impl Into<Arc<str>>, ) -> Self
Creates an input without reading the file system or process environment.
Sourcepub const fn origin(&self) -> &DocumentOrigin
pub const fn origin(&self) -> &DocumentOrigin
Returns the caller-defined document origin.
Sourcepub fn source_text(&self) -> &str
pub fn source_text(&self) -> &str
Returns the supplied source text.
Trait Implementations§
Source§impl Clone for DocumentInput
impl Clone for DocumentInput
Source§fn clone(&self) -> DocumentInput
fn clone(&self) -> DocumentInput
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 DocumentInput
impl Debug for DocumentInput
impl Eq for DocumentInput
Source§impl PartialEq for DocumentInput
impl PartialEq for DocumentInput
impl StructuralPartialEq for DocumentInput
Auto Trait Implementations§
impl Freeze for DocumentInput
impl RefUnwindSafe for DocumentInput
impl Send for DocumentInput
impl Sync for DocumentInput
impl Unpin for DocumentInput
impl UnsafeUnpin for DocumentInput
impl UnwindSafe for DocumentInput
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