pub struct EngineOptions {
pub unsupported: UnsupportedPolicy,
}Expand description
Optional, forward-looking engine configuration. New feature toggles are added
here as fields; both validation (ValidationOptions) and inference
(crate::infer_with_options) accept it, so callers configure behavior in
one place.
Fields§
§unsupported: UnsupportedPolicyHow to handle partially supported features encountered at run time —
currently graph-reading sh:SPARQLFunction bodies called from a SPARQL
context (which the engine can only evaluate as pure functions).
Trait Implementations§
Source§impl Clone for EngineOptions
impl Clone for EngineOptions
Source§fn clone(&self) -> EngineOptions
fn clone(&self) -> EngineOptions
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 moreimpl Copy for EngineOptions
Source§impl Debug for EngineOptions
impl Debug for EngineOptions
Source§impl Default for EngineOptions
impl Default for EngineOptions
Source§fn default() -> EngineOptions
fn default() -> EngineOptions
Returns the “default value” for a type. Read more
impl Eq for EngineOptions
Source§impl PartialEq for EngineOptions
impl PartialEq for EngineOptions
Source§fn eq(&self, other: &EngineOptions) -> bool
fn eq(&self, other: &EngineOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EngineOptions
Auto Trait Implementations§
impl Freeze for EngineOptions
impl RefUnwindSafe for EngineOptions
impl Send for EngineOptions
impl Sync for EngineOptions
impl Unpin for EngineOptions
impl UnsafeUnpin for EngineOptions
impl UnwindSafe for EngineOptions
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.