pub struct LookAheadObject<'a, S> { /* private fields */ }
Expand description
Lazy-evaluated input object used in look-ahead operations on an executed GraphQL query.
Implementations§
Source§impl<'a, S: ScalarValue> LookAheadObject<'a, S>
impl<'a, S: ScalarValue> LookAheadObject<'a, S>
Sourcepub fn iter(&self) -> <&Self as IntoIterator>::IntoIter
pub fn iter(&self) -> <&Self as IntoIterator>::IntoIter
Returns an Iterator
over this input object’s fields.
Trait Implementations§
Source§impl<'a, S> Clone for LookAheadObject<'a, S>
impl<'a, S> Clone for LookAheadObject<'a, S>
Source§impl<'a, S: Debug> Debug for LookAheadObject<'a, S>
impl<'a, S: Debug> Debug for LookAheadObject<'a, S>
Source§impl<'a, S> Default for LookAheadObject<'a, S>
impl<'a, S> Default for LookAheadObject<'a, S>
Source§impl<'a, S: ScalarValue> IntoIterator for &LookAheadObject<'a, S>
impl<'a, S: ScalarValue> IntoIterator for &LookAheadObject<'a, S>
Source§impl<'a, S: ScalarValue> IntoIterator for LookAheadObject<'a, S>
impl<'a, S: ScalarValue> IntoIterator for LookAheadObject<'a, S>
Source§impl<'a, S: ScalarValue> PartialEq for LookAheadObject<'a, S>
impl<'a, S: ScalarValue> PartialEq for LookAheadObject<'a, S>
impl<'a, S> Copy for LookAheadObject<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for LookAheadObject<'a, S>
impl<'a, S> RefUnwindSafe for LookAheadObject<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for LookAheadObject<'a, S>where
S: Sync,
impl<'a, S> Sync for LookAheadObject<'a, S>where
S: Sync,
impl<'a, S> Unpin for LookAheadObject<'a, S>
impl<'a, S> UnwindSafe for LookAheadObject<'a, S>where
S: RefUnwindSafe,
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