pub struct LoadedDocumentScope {
pub scope: ResolvedDocumentScope,
pub documents: Vec<ResolvedContent>,
}Expand description
A logical scope together with the loaded documents in matching order.
Fields§
§scope: ResolvedDocumentScopeTransport-neutral logical graph.
documents: Vec<ResolvedContent>Loaded documents in the same order as ResolvedDocumentScope::documents.
Trait Implementations§
Source§impl Clone for LoadedDocumentScope
impl Clone for LoadedDocumentScope
Source§fn clone(&self) -> LoadedDocumentScope
fn clone(&self) -> LoadedDocumentScope
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 moreAuto Trait Implementations§
impl Freeze for LoadedDocumentScope
impl RefUnwindSafe for LoadedDocumentScope
impl Send for LoadedDocumentScope
impl Sync for LoadedDocumentScope
impl Unpin for LoadedDocumentScope
impl UnsafeUnpin for LoadedDocumentScope
impl UnwindSafe for LoadedDocumentScope
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