pub struct QueryInstructions<S: Semantics> {
pub taken: Vec<InstructionWithResultMarker<S>>,
pub not_taken: Vec<InstructionWithResultMarker<S>>,
}Fields§
§taken: Vec<InstructionWithResultMarker<S>>§not_taken: Vec<InstructionWithResultMarker<S>>Trait Implementations§
Source§impl<S: Semantics<BuiltinOperation: Clone, BuiltinQuery: Clone>> Clone for QueryInstructions<S>
impl<S: Semantics<BuiltinOperation: Clone, BuiltinQuery: Clone>> Clone for QueryInstructions<S>
Source§impl<S: Semantics> Debug for QueryInstructions<S>
impl<S: Semantics> Debug for QueryInstructions<S>
Source§impl<'de, S> Deserialize<'de> for QueryInstructions<S>where
S: SemanticsSerde + Semantics,
impl<'de, S> Deserialize<'de> for QueryInstructions<S>where
S: SemanticsSerde + Semantics,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<S> Freeze for QueryInstructions<S>
impl<S> RefUnwindSafe for QueryInstructions<S>where
<S as Semantics>::BuiltinQuery: RefUnwindSafe,
<S as Semantics>::BuiltinOperation: RefUnwindSafe,
<S as Semantics>::NodeConcrete: RefUnwindSafe,
<S as Semantics>::NodeAbstract: RefUnwindSafe,
<S as Semantics>::EdgeConcrete: RefUnwindSafe,
<S as Semantics>::EdgeAbstract: RefUnwindSafe,
impl<S> Send for QueryInstructions<S>where
<S as Semantics>::BuiltinQuery: Send,
<S as Semantics>::BuiltinOperation: Send,
<S as Semantics>::NodeConcrete: Send,
<S as Semantics>::NodeAbstract: Send,
<S as Semantics>::EdgeConcrete: Send,
<S as Semantics>::EdgeAbstract: Send,
impl<S> Sync for QueryInstructions<S>where
<S as Semantics>::BuiltinQuery: Sync,
<S as Semantics>::BuiltinOperation: Sync,
<S as Semantics>::NodeConcrete: Sync,
<S as Semantics>::NodeAbstract: Sync,
<S as Semantics>::EdgeConcrete: Sync,
<S as Semantics>::EdgeAbstract: Sync,
impl<S> Unpin for QueryInstructions<S>where
<S as Semantics>::BuiltinQuery: Unpin,
<S as Semantics>::BuiltinOperation: Unpin,
<S as Semantics>::NodeConcrete: Unpin,
<S as Semantics>::NodeAbstract: Unpin,
<S as Semantics>::EdgeConcrete: Unpin,
<S as Semantics>::EdgeAbstract: Unpin,
impl<S> UnsafeUnpin for QueryInstructions<S>
impl<S> UnwindSafe for QueryInstructions<S>where
<S as Semantics>::BuiltinQuery: UnwindSafe,
<S as Semantics>::BuiltinOperation: UnwindSafe,
<S as Semantics>::NodeConcrete: UnwindSafe,
<S as Semantics>::NodeAbstract: UnwindSafe,
<S as Semantics>::EdgeConcrete: UnwindSafe,
<S as Semantics>::EdgeAbstract: UnwindSafe,
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