pub struct ContextLoadResult {
pub files: Vec<ResolvedContext>,
pub skipped: Vec<String>,
pub total_bytes: usize,
}Expand description
Information about loaded context for inspection
Fields§
§files: Vec<ResolvedContext>All successfully loaded context in order
skipped: Vec<String>Any files that were skipped (optional files not found)
total_bytes: usizeTotal size in bytes
Trait Implementations§
Source§impl Clone for ContextLoadResult
impl Clone for ContextLoadResult
Source§fn clone(&self) -> ContextLoadResult
fn clone(&self) -> ContextLoadResult
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 ContextLoadResult
impl Debug for ContextLoadResult
Source§impl Default for ContextLoadResult
impl Default for ContextLoadResult
Source§fn default() -> ContextLoadResult
fn default() -> ContextLoadResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContextLoadResult
impl RefUnwindSafe for ContextLoadResult
impl Send for ContextLoadResult
impl Sync for ContextLoadResult
impl Unpin for ContextLoadResult
impl UnwindSafe for ContextLoadResult
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