Trait yrs::ReadTxn

source ·
pub trait ReadTxn: Sized {
Show 18 methods fn store(&self) -> &Store; fn state_vector(&self) -> StateVector { ... } fn snapshot(&self) -> Snapshot { ... } fn encode_state_from_snapshot<E: Encoder>(
        &self,
        snapshot: &Snapshot,
        encoder: &mut E
    ) -> Result<(), Error> { ... } fn encode_diff<E: Encoder>(&self, state_vector: &StateVector, encoder: &mut E) { ... } fn encode_diff_v1(&self, state_vector: &StateVector) -> Vec<u8> { ... } fn encode_state_as_update<E: Encoder>(
        &self,
        sv: &StateVector,
        encoder: &mut E
    ) { ... } fn encode_state_as_update_v1(&self, sv: &StateVector) -> Vec<u8> { ... } fn encode_state_as_update_v2(&self, sv: &StateVector) -> Vec<u8> { ... } fn root_refs(&self) -> RootRefs<'_> { ... } fn subdoc_guids(&self) -> SubdocGuids<'_> { ... } fn subdocs(&self) -> SubdocsIter<'_> { ... } fn get_text(&self, name: &str) -> Option<TextRef> { ... } fn get_array(&self, name: &str) -> Option<ArrayRef> { ... } fn get_map(&self, name: &str) -> Option<MapRef> { ... } fn get_xml_fragment(&self, name: &str) -> Option<XmlFragmentRef> { ... } fn get_xml_element(&self, name: &str) -> Option<XmlElementRef> { ... } fn get_xml_text(&self, name: &str) -> Option<XmlTextRef> { ... }
}

Required Methods§

Provided Methods§

Returns state vector describing current state of the updates.

Returns a snapshot which describes a current state of updates and removals made within the corresponding document.

Encodes all changes from current transaction block store up to a given snapshot. This enables to encode state of a document at some specific point in the past.

Encodes the difference between remove peer state given its state_vector and the state of a current local peer

Returns an iterator over top level (root) shared types available in current Doc.

Returns a collection of globally unique identifiers of sub documents linked within the structures of this document store.

Returns a collection of sub documents linked within the structures of this document store.

Returns a TextRef data structure stored under a given name. Text structures are used for collaborative text editing: they expose operations to append and remove chunks of text, which are free to execute concurrently by multiple peers over remote boundaries.

If not structure under defined name existed before, None will be returned.

If a structure under defined name already existed, but its type was different it will be reinterpreted as a text (in such case a sequence component of complex data type will be interpreted as a list of text chunks).

Returns an ArrayRef data structure stored under a given name. Array structures are used for storing a sequences of elements in ordered manner, positioning given element accordingly to its index.

If not structure under defined name existed before, None will be returned.

If a structure under defined name already existed, but its type was different it will be reinterpreted as an array (in such case a sequence component of complex data type will be interpreted as a list of inserted values).

Returns a MapRef data structure stored under a given name. Maps are used to store key-value pairs associated together. These values can be primitive data (similar but not limited to a JavaScript Object Notation) as well as other shared types (Yrs maps, arrays, text structures etc.), enabling to construct a complex recursive tree structures.

If not structure under defined name existed before, None will be returned.

If a structure under defined name already existed, but its type was different it will be reinterpreted as a map (in such case a map component of complex data type will be interpreted as native map).

Returns a XmlFragmentRef data structure stored under a given name. XML elements represent nodes of XML document. They can contain attributes (key-value pairs, both of string type) as well as other nested XML elements or text values, which are stored in their insertion order.

If not structure under defined name existed before, None will be returned.

If a structure under defined name already existed, but its type was different it will be reinterpreted as a XML element (in such case a map component of complex data type will be interpreted as map of its attributes, while a sequence component - as a list of its child XML nodes).

Returns a XmlElementRef data structure stored under a given name. XML elements represent nodes of XML document. They can contain attributes (key-value pairs, both of string type) as well as other nested XML elements or text values, which are stored in their insertion order.

If not structure under defined name existed before, None will be returned.

If a structure under defined name already existed, but its type was different it will be reinterpreted as a XML element (in such case a map component of complex data type will be interpreted as map of its attributes, while a sequence component - as a list of its child XML nodes).

Returns a XmlTextRef data structure stored under a given name. Text structures are used for collaborative text editing: they expose operations to append and remove chunks of text, which are free to execute concurrently by multiple peers over remote boundaries.

If not structure under defined name existed before, None will be returned.

If a structure under defined name already existed, but its type was different it will be reinterpreted as a text (in such case a sequence component of complex data type will be interpreted as a list of text chunks).

Implementors§