pub struct MotifProgramCacheKey {
pub node_count: u32,
pub edge_count: u32,
pub motif_edges: Vec<MotifEdge>,
pub witness_out: String,
}Expand description
Primitive-owned cache identity for motif Programs.
Fields§
§node_count: u32Number of graph nodes baked into the generated Program.
edge_count: u32Number of physical CSR edges baked into the generated Program shape.
motif_edges: Vec<MotifEdge>Motif edges lowered as Program constants.
witness_out: StringWitness output buffer name baked into the Program.
Trait Implementations§
Source§impl Clone for MotifProgramCacheKey
impl Clone for MotifProgramCacheKey
Source§fn clone(&self) -> MotifProgramCacheKey
fn clone(&self) -> MotifProgramCacheKey
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 MotifProgramCacheKey
impl Debug for MotifProgramCacheKey
impl Eq for MotifProgramCacheKey
Source§impl PartialEq for MotifProgramCacheKey
impl PartialEq for MotifProgramCacheKey
impl StructuralPartialEq for MotifProgramCacheKey
Auto Trait Implementations§
impl Freeze for MotifProgramCacheKey
impl RefUnwindSafe for MotifProgramCacheKey
impl Send for MotifProgramCacheKey
impl Sync for MotifProgramCacheKey
impl Unpin for MotifProgramCacheKey
impl UnsafeUnpin for MotifProgramCacheKey
impl UnwindSafe for MotifProgramCacheKey
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.