Struct yrs::types::xml::XmlTextRef
source · #[repr(transparent)]pub struct XmlTextRef(_);Expand description
A shared data type used for collaborative text editing, that can be used in a context of [XmlElement] nodee. It enables multiple users to add and remove chunks of text in efficient manner. This type is internally represented as a mutable double-linked list of text chunks
- an optimization occurs during [Transaction::commit], which allows to squash multiple consecutively inserted characters together as a single chunk of text even between transaction boundaries in order to preserve more efficient memory model.
Just like [XmlElement], [XmlText] can be marked with extra metadata in form of attributes.
[XmlText] structure internally uses UTF-8 encoding and its length is described in a number of bytes rather than individual characters (a single UTF-8 code point can consist of many bytes).
Like all Yrs shared data types, [XmlText] is resistant to the problem of interleaving (situation when characters inserted one after another may interleave with other peers concurrent inserts after merging all updates together). In case of Yrs conflict resolution is solved by using unique document id to determine correct and consistent ordering.
Trait Implementations§
source§impl AsMut<Branch> for XmlTextRef
impl AsMut<Branch> for XmlTextRef
source§impl AsRef<Branch> for XmlTextRef
impl AsRef<Branch> for XmlTextRef
source§impl Clone for XmlTextRef
impl Clone for XmlTextRef
source§fn clone(&self) -> XmlTextRef
fn clone(&self) -> XmlTextRef
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for XmlTextRef
impl Debug for XmlTextRef
source§impl From<BranchPtr> for XmlTextRef
impl From<BranchPtr> for XmlTextRef
source§impl GetString for XmlTextRef
impl GetString for XmlTextRef
source§impl Observable for XmlTextRef
impl Observable for XmlTextRef
type Event = XmlTextEvent
fn try_observer(
&self
) -> Option<&Observer<Arc<dyn Fn(&TransactionMut<'_>, &Self::Event)>>>
fn try_observer_mut(
&mut self
) -> Option<&mut Observer<Arc<dyn Fn(&TransactionMut<'_>, &Self::Event)>>>
source§fn observe<F>(
&mut self,
f: F
) -> Subscription<Arc<dyn Fn(&TransactionMut<'_>, &Self::Event)>>where
F: Fn(&TransactionMut<'_>, &Self::Event) + 'static,
fn observe<F>(
&mut self,
f: F
) -> Subscription<Arc<dyn Fn(&TransactionMut<'_>, &Self::Event)>>where
F: Fn(&TransactionMut<'_>, &Self::Event) + 'static,
source§fn unobserve(&self, subscription_id: SubscriptionId)
fn unobserve(&self, subscription_id: SubscriptionId)
subscription_id.source§impl PartialEq<XmlTextRef> for XmlTextRef
impl PartialEq<XmlTextRef> for XmlTextRef
source§fn eq(&self, other: &XmlTextRef) -> bool
fn eq(&self, other: &XmlTextRef) -> bool
source§impl Text for XmlTextRef
impl Text for XmlTextRef
source§fn len<T: ReadTxn>(&self, txn: &T) -> u32
fn len<T: ReadTxn>(&self, txn: &T) -> u32
source§fn insert(&self, txn: &mut TransactionMut<'_>, index: u32, chunk: &str)
fn insert(&self, txn: &mut TransactionMut<'_>, index: u32, chunk: &str)
chunk of text at a given index.
If index is 0, this chunk will be inserted at the beginning of a current text.
If index is equal to current data structure length, this chunk will be appended at
the end of it. Read moresource§fn insert_with_attributes(
&self,
txn: &mut TransactionMut<'_>,
index: u32,
chunk: &str,
attributes: Attrs
)
fn insert_with_attributes(
&self,
txn: &mut TransactionMut<'_>,
index: u32,
chunk: &str,
attributes: Attrs
)
chunk of text at a given index.
If index is 0, this chunk will be inserted at the beginning of a current text.
If index is equal to current data structure length, this chunk will be appended at
the end of it.
Collection of supplied attributes will be used to wrap provided text chunk range with a
formatting blocks. Read moresource§fn insert_embed(&self, txn: &mut TransactionMut<'_>, index: u32, content: Any)
fn insert_embed(&self, txn: &mut TransactionMut<'_>, index: u32, content: Any)
source§fn insert_embed_with_attributes(
&self,
txn: &mut TransactionMut<'_>,
index: u32,
embed: Any,
attributes: Attrs
)
fn insert_embed_with_attributes(
&self,
txn: &mut TransactionMut<'_>,
index: u32,
embed: Any,
attributes: Attrs
)
content of text at a given index.
If index is 0, this content will be inserted at the beginning of a current text.
If index is equal to current data structure length, this chunk will be appended at
the end of it.
Collection of supplied attributes will be used to wrap provided text content range with
a formatting blocks. Read moresource§fn push(&self, txn: &mut TransactionMut<'_>, chunk: &str)
fn push(&self, txn: &mut TransactionMut<'_>, chunk: &str)
chunk of text at the end of a current text structure.source§fn remove_range(&self, txn: &mut TransactionMut<'_>, index: u32, len: u32)
fn remove_range(&self, txn: &mut TransactionMut<'_>, index: u32, len: u32)
len characters from a current text structure, starting at given index.
This method panics in case when not all expected characters were removed (due to
insufficient number of characters to remove) or index is outside of the bounds of text. Read moresource§fn format(
&self,
txn: &mut TransactionMut<'_>,
index: u32,
len: u32,
attributes: Attrs
)
fn format(
&self,
txn: &mut TransactionMut<'_>,
index: u32,
len: u32,
attributes: Attrs
)
index-len parameters with
formatting blocks containing provided attributes metadata. Read morefn diff<T, D, F>(&self, txn: &T, compute_ychange: F) -> Vec<Diff<D>>where
T: ReadTxn,
F: Fn(YChange) -> D,
source§impl TryInto<XmlTextRef> for XmlNode
impl TryInto<XmlTextRef> for XmlNode
source§impl Xml for XmlTextRef
impl Xml for XmlTextRef
fn parent(&self) -> Option<XmlNode>
source§fn remove_attribute<K>(&self, txn: &mut TransactionMut<'_>, attr_name: &K)where
K: AsRef<str>,
fn remove_attribute<K>(&self, txn: &mut TransactionMut<'_>, attr_name: &K)where
K: AsRef<str>,
attr_name from a current XML element.source§fn insert_attribute<K, V>(
&self,
txn: &mut TransactionMut<'_>,
attr_name: K,
attr_value: V
)where
K: Into<Rc<str>>,
V: AsRef<str>,
fn insert_attribute<K, V>(
&self,
txn: &mut TransactionMut<'_>,
attr_name: K,
attr_value: V
)where
K: Into<Rc<str>>,
V: AsRef<str>,
source§fn get_attribute<T: ReadTxn>(&self, txn: &T, attr_name: &str) -> Option<String>
fn get_attribute<T: ReadTxn>(&self, txn: &T, attr_name: &str) -> Option<String>
attr_name. Returns None if no such attribute
can be found inside of a current XML element. Read moresource§fn attributes<'a, T: ReadTxn>(&'a self, txn: &'a T) -> Attributes<'a, &'a T, T> ⓘ
fn attributes<'a, T: ReadTxn>(&'a self, txn: &'a T) -> Attributes<'a, &'a T, T> ⓘ
fn siblings<'a, T: ReadTxn>(&self, txn: &'a T) -> Siblings<'a, T> ⓘ
impl Eq for XmlTextRef
impl StructuralEq for XmlTextRef
impl StructuralPartialEq for XmlTextRef
Auto Trait Implementations§
impl !RefUnwindSafe for XmlTextRef
impl !Send for XmlTextRef
impl !Sync for XmlTextRef
impl Unpin for XmlTextRef
impl !UnwindSafe for XmlTextRef
Blanket Implementations§
source§impl<T> DeepObservable for Twhere
T: AsMut<Branch>,
impl<T> DeepObservable for Twhere
T: AsMut<Branch>,
source§fn observe_deep<F>(
&mut self,
f: F
) -> Subscription<Arc<dyn Fn(&TransactionMut<'_>, &Events) + 'static>>where
F: 'static + Fn(&TransactionMut<'_>, &Events),
fn observe_deep<F>(
&mut self,
f: F
) -> Subscription<Arc<dyn Fn(&TransactionMut<'_>, &Events) + 'static>>where
F: 'static + Fn(&TransactionMut<'_>, &Events),
source§fn unobserve_deep(&mut self, subscription_id: u32)
fn unobserve_deep(&mut self, subscription_id: u32)
subscription_id (which can be obtained by consuming
Subscription using into cast). Read more