Rindle docs and package mapSkip to main content

Receiver

Struct Receiver 

Source
pub struct Receiver { /* private fields */ }
Expand description

The reference receiver: holds the hierarchical view Schema (the shipped query schema) and the reconstructed top-level list (root[""]).

Implementations§

Source§

impl Receiver

Source

pub fn new(schema: Schema) -> Receiver

A fresh receiver over the given hierarchical view schema (the same Schema the sender’s View was built with — its per-level sort is the comparator input and rel_child(slot) is the in-view gate).

Source

pub fn apply(&mut self, change: &FlatChange)

Apply one FlatChange: descend its path, then fold the op at the reached level. Panics on an inconsistent stream (mirrors the differ’s “node does not exist” — view.rs:450).

Source

pub fn apply_all(&mut self, changes: &[FlatChange])

Apply a batch in order (the per-transaction delta, or the hydrate snapshot). Order is significant — see FLAT-CHANGES-DESIGN.md §5.4.

Source

pub fn top(&self) -> &[RecvNode]

The reconstructed top-level result (root[""]).

Source

pub fn schema(&self) -> &Schema

The hierarchical view schema this receiver reconstructs against.

Trait Implementations§

Source§

impl Debug for Receiver

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.