pub struct IncrementalDeliverySupport {
pub enable_defer: Option<bool>,
}Expand description
Option for @defer directive support
Fields§
§enable_defer: Option<bool>Enables @defer support by the query planner.
If set, then the query plan for queries having some @defer will contains some DeferNode (see QueryPlan.ts).
Defaults to false (meaning that the @defer are ignored).
Trait Implementations§
Source§impl Clone for IncrementalDeliverySupport
impl Clone for IncrementalDeliverySupport
Source§fn clone(&self) -> IncrementalDeliverySupport
fn clone(&self) -> IncrementalDeliverySupport
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 IncrementalDeliverySupport
impl Debug for IncrementalDeliverySupport
Source§impl Hash for IncrementalDeliverySupport
impl Hash for IncrementalDeliverySupport
impl Eq for IncrementalDeliverySupport
impl StructuralPartialEq for IncrementalDeliverySupport
Auto Trait Implementations§
impl Freeze for IncrementalDeliverySupport
impl RefUnwindSafe for IncrementalDeliverySupport
impl Send for IncrementalDeliverySupport
impl Sync for IncrementalDeliverySupport
impl Unpin for IncrementalDeliverySupport
impl UnwindSafe for IncrementalDeliverySupport
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
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.