pub struct ProgramCheckInput<'a> {
pub files: &'a [Recovered<SourceFile>],
pub edges: &'a [ResolvedModuleEdge],
}Expand description
Borrowed input for a linked multi-file checker run.
Fields§
§files: &'a [Recovered<SourceFile>]§edges: &'a [ResolvedModuleEdge]Trait Implementations§
Source§impl<'a> Clone for ProgramCheckInput<'a>
impl<'a> Clone for ProgramCheckInput<'a>
Source§fn clone(&self) -> ProgramCheckInput<'a>
fn clone(&self) -> ProgramCheckInput<'a>
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 moreimpl<'a> Copy for ProgramCheckInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for ProgramCheckInput<'a>
impl<'a> RefUnwindSafe for ProgramCheckInput<'a>
impl<'a> Send for ProgramCheckInput<'a>
impl<'a> Sync for ProgramCheckInput<'a>
impl<'a> Unpin for ProgramCheckInput<'a>
impl<'a> UnsafeUnpin for ProgramCheckInput<'a>
impl<'a> UnwindSafe for ProgramCheckInput<'a>
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