pub struct FilteredScopePage<P> {
pub projected: Vec<P>,
pub next_cursor: ScopeCursor,
pub has_more: bool,
}Expand description
Filtered delivery plus a watermark through all evaluated entries, including excluded ones.
Fields§
§projected: Vec<P>§next_cursor: ScopeCursor§has_more: boolTrait Implementations§
Source§impl<P: Clone> Clone for FilteredScopePage<P>
impl<P: Clone> Clone for FilteredScopePage<P>
Source§fn clone(&self) -> FilteredScopePage<P>
fn clone(&self) -> FilteredScopePage<P>
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 moreSource§impl<P: Debug> Debug for FilteredScopePage<P>
impl<P: Debug> Debug for FilteredScopePage<P>
Source§impl<'de, P> Deserialize<'de> for FilteredScopePage<P>where
P: Deserialize<'de>,
impl<'de, P> Deserialize<'de> for FilteredScopePage<P>where
P: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<P: Eq> Eq for FilteredScopePage<P>
Source§impl<P: PartialEq> PartialEq for FilteredScopePage<P>
impl<P: PartialEq> PartialEq for FilteredScopePage<P>
Source§impl<P> Serialize for FilteredScopePage<P>where
P: Serialize,
impl<P> Serialize for FilteredScopePage<P>where
P: Serialize,
impl<P: PartialEq> StructuralPartialEq for FilteredScopePage<P>
Auto Trait Implementations§
impl<P> Freeze for FilteredScopePage<P>
impl<P> RefUnwindSafe for FilteredScopePage<P>where
Vec<P>: RefUnwindSafe,
impl<P> Send for FilteredScopePage<P>
impl<P> Sync for FilteredScopePage<P>
impl<P> Unpin for FilteredScopePage<P>
impl<P> UnsafeUnpin for FilteredScopePage<P>where
Vec<P>: UnsafeUnpin,
impl<P> UnwindSafe for FilteredScopePage<P>where
Vec<P>: UnwindSafe,
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