Struct loro::LoroTree

source ·
pub struct LoroTree { /* private fields */ }
Expand description

LoroTree container. It’s used to model movable trees.

You may use it to model directories, outline or other movable hierarchical data.

Implementations§

source§

impl LoroTree

source

pub fn new() -> Self

Create a new container that is detached from the document.

The edits on a detached container will not be persisted. To attach the container to the document, please insert it into an attached container.

source

pub fn is_attached(&self) -> bool

Whether the container is attached to a document

The edits on a detached container will not be persisted. To attach the container to the document, please insert it into an attached container.

source

pub fn create<T: Into<Option<TreeID>>>(&self, parent: T) -> LoroResult<TreeID>

Create a new tree node and return the TreeID.

If the parent is None, the created node is the root of a tree. Otherwise, the created node is a child of the parent tree node.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
// create a root
let root = tree.create(None).unwrap();
// create a new child
let child = tree.create(root).unwrap();
source

pub fn create_at<T: Into<Option<TreeID>>>( &self, parent: T, index: usize ) -> LoroResult<TreeID>

Create a new tree node at the given index and return the TreeID.

If the parent is None, the created node is the root of a tree. If the index is greater than the number of children of the parent, error will be returned.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
// create a root
let root = tree.create(None).unwrap();
// create a new child at index 0
let child = tree.create_at(root, 0).unwrap();
source

pub fn mov<T: Into<Option<TreeID>>>( &self, target: TreeID, parent: T ) -> LoroResult<()>

Move the target node to be a child of the parent node.

If the parent is None, the target node will be a root.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
let root = tree.create(None).unwrap();
let root2 = tree.create(None).unwrap();
// move `root2` to be a child of `root`.
tree.mov(root2, root).unwrap();
source

pub fn mov_to<T: Into<Option<TreeID>>>( &self, target: TreeID, parent: T, to: usize ) -> LoroResult<()>

Move the target node to be a child of the parent node at the given index. If the parent is None, the target node will be a root.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
let root = tree.create(None).unwrap();
let root2 = tree.create(None).unwrap();
// move `root2` to be a child of `root` at index 0.
tree.mov_to(root2, root, 0).unwrap();
source

pub fn mov_after(&self, target: TreeID, after: TreeID) -> LoroResult<()>

Move the target node to be a child after the after node with the same parent.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
let root = tree.create(None).unwrap();
let root2 = tree.create(None).unwrap();
// move `root` to be a child after `root2`.
tree.mov_after(root, root2).unwrap();
source

pub fn mov_before(&self, target: TreeID, before: TreeID) -> LoroResult<()>

Move the target node to be a child before the before node with the same parent.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
let root = tree.create(None).unwrap();
let root2 = tree.create(None).unwrap();
// move `root` to be a child before `root2`.
tree.mov_before(root, root2).unwrap();
source

pub fn delete(&self, target: TreeID) -> LoroResult<()>

Delete a tree node.

Note: If the deleted node has children, the children do not appear in the state rather than actually being deleted.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
let root = tree.create(None).unwrap();
tree.delete(root).unwrap();
source

pub fn get_meta(&self, target: TreeID) -> LoroResult<LoroMap>

Get the associated metadata map handler of a tree node.

§Example
use loro::LoroDoc;

let doc = LoroDoc::new();
let tree = doc.get_tree("tree");
let root = tree.create(None).unwrap();
let root_meta = tree.get_meta(root).unwrap();
root_meta.insert("color", "red");
source

pub fn parent(&self, target: &TreeID) -> Option<Option<TreeID>>

Return the parent of target node.

  • If the target node does not exist, return None.
  • If the target node is a root node, return Some(None).
source

pub fn contains(&self, target: TreeID) -> bool

Return whether target node exists.

source

pub fn nodes(&self) -> Vec<TreeID>

Return all nodes

source

pub fn children(&self, parent: Option<TreeID>) -> Vec<TreeID>

Return all children of the target node.

source

pub fn children_num(&self, parent: Option<TreeID>) -> Option<usize>

Return the number of children of the target node.

source

pub fn id(&self) -> ContainerID

Return container id of the tree.

source

pub fn fractional_index(&self, target: &TreeID) -> Option<String>

Return the fractional index of the target node with hex format.

source

pub fn get_value(&self) -> LoroValue

Return the flat array of the forest.

Note: the metadata will be not resolved. So if you don’t only care about hierarchy but also the metadata, you should use [TreeHandler::get_value_with_meta()].

source

pub fn get_value_with_meta(&self) -> LoroValue

Return the flat array of the forest, each node is with metadata.

Trait Implementations§

source§

impl Clone for LoroTree

source§

fn clone(&self) -> LoroTree

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl ContainerTrait for LoroTree

§

type Handler = TreeHandler

The handler of the container.
source§

fn to_container(&self) -> Container

Convert the container to a Container.
source§

fn to_handler(&self) -> Self::Handler

Convert the container to a handler.
source§

fn from_handler(handler: Self::Handler) -> Self

Convert the handler to a container.
source§

fn is_attached(&self) -> bool

Whether the container is attached to a document.
source§

fn get_attached(&self) -> Option<Self>

If a detached container is attached, this method will return its corresponding attached handler.
source§

fn try_from_container(container: Container) -> Option<Self>

Try to convert the container to the handler.
source§

impl Debug for LoroTree

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for LoroTree

source§

fn default() -> Self

Returns the “default value” for a type. 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> ZeroElement for T
where T: Default,