pub struct EngineCapabilityGapReport {
pub supported: bool,
pub missing_ops: Vec<String>,
pub missing_exprs: Vec<String>,
pub graph_ref_unsupported: bool,
pub multi_graph_unsupported: bool,
pub graph_param_unsupported: bool,
pub unsupported_plan_version: Option<String>,
pub raw_error: Option<String>,
}Fields§
§supported: bool§missing_ops: Vec<String>§missing_exprs: Vec<String>§graph_ref_unsupported: bool§multi_graph_unsupported: bool§graph_param_unsupported: bool§unsupported_plan_version: Option<String>§raw_error: Option<String>Trait Implementations§
Source§impl Clone for EngineCapabilityGapReport
impl Clone for EngineCapabilityGapReport
Source§fn clone(&self) -> EngineCapabilityGapReport
fn clone(&self) -> EngineCapabilityGapReport
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 EngineCapabilityGapReport
impl Debug for EngineCapabilityGapReport
Auto Trait Implementations§
impl Freeze for EngineCapabilityGapReport
impl RefUnwindSafe for EngineCapabilityGapReport
impl Send for EngineCapabilityGapReport
impl Sync for EngineCapabilityGapReport
impl Unpin for EngineCapabilityGapReport
impl UnsafeUnpin for EngineCapabilityGapReport
impl UnwindSafe for EngineCapabilityGapReport
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