pub struct Refusal {
pub rule: &'static str,
pub at: OpId,
pub kept: OpId,
pub why: String,
}Expand description
One rewrite that matched a shape and was refused, with the condition that refused it.
Printed by beck explain query, because “this could have fused and here is what stopped it” is
the sentence a developer can act on — usually by moving where the program reads the session.
Fields§
§rule: &'static str§at: OpIdThe consumer, in the fused plan’s numbering.
kept: OpIdThe producer that stayed.
why: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Refusal
impl RefUnwindSafe for Refusal
impl Send for Refusal
impl Sync for Refusal
impl Unpin for Refusal
impl UnwindSafe for Refusal
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