pub struct ExplainedOp {
pub index: usize,
pub kind: String,
pub inputs: Vec<u32>,
pub schema: Vec<String>,
pub ordering_contract: String,
pub has_graph_ref: bool,
}Fields§
§index: usize§kind: String§inputs: Vec<u32>§schema: Vec<String>§ordering_contract: String§has_graph_ref: boolTrait Implementations§
Source§impl Clone for ExplainedOp
impl Clone for ExplainedOp
Source§fn clone(&self) -> ExplainedOp
fn clone(&self) -> ExplainedOp
Returns a duplicate of the value. Read more
1.0.0 · 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 ExplainedOp
impl Debug for ExplainedOp
Auto Trait Implementations§
impl Freeze for ExplainedOp
impl RefUnwindSafe for ExplainedOp
impl Send for ExplainedOp
impl Sync for ExplainedOp
impl Unpin for ExplainedOp
impl UnsafeUnpin for ExplainedOp
impl UnwindSafe for ExplainedOp
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