pub struct PathExtractionRequest<'a> {
pub seed: &'a PathSeed,
pub source_reach: &'a [u32],
pub sanitizer_mask: &'a [u32],
}Expand description
One prepared witness extraction request.
source_reach is intentionally per request because witness soundness
requires a per-source reachability mask. Aggregating masks across sources
can produce a path that starts at the wrong source.
Fields§
§seed: &'a PathSeedSource/sink pair to explain.
source_reach: &'a [u32]Per-source reachability mask for seed.source_node.
sanitizer_mask: &'a [u32]Per-rule sanitizer mask. Empty means the rule has no sanitizers.
Trait Implementations§
Source§impl<'a> Clone for PathExtractionRequest<'a>
impl<'a> Clone for PathExtractionRequest<'a>
Source§fn clone(&self) -> PathExtractionRequest<'a>
fn clone(&self) -> PathExtractionRequest<'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 PathExtractionRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for PathExtractionRequest<'a>
impl<'a> RefUnwindSafe for PathExtractionRequest<'a>
impl<'a> Send for PathExtractionRequest<'a>
impl<'a> Sync for PathExtractionRequest<'a>
impl<'a> Unpin for PathExtractionRequest<'a>
impl<'a> UnsafeUnpin for PathExtractionRequest<'a>
impl<'a> UnwindSafe for PathExtractionRequest<'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