pub struct SharedArena { /* private fields */ }
Expand description
This is shared between [OpLog] and [AppState].
Implementations§
pub fn new() -> Self
pub fn fork(&self) -> Self
pub fn register_container(&self, id: &ContainerID) -> ContainerIdx
pub fn get_container_id(&self, idx: ContainerIdx) -> Option<ContainerID>
Sourcepub fn id_to_idx(&self, id: &ContainerID) -> Option<ContainerIdx>
pub fn id_to_idx(&self, id: &ContainerID) -> Option<ContainerIdx>
Fast map from ContainerID
to ContainerIdx
for containers already registered
in the arena.
Important: This is not an existence check. Absence here does not imply that a container does not exist, since registration can be lazy and containers may be persisted only in the state KV store until first use.
For existence-aware lookup that consults persisted state and performs lazy
registration, prefer DocState::resolve_idx
.
pub fn idx_to_id(&self, id: ContainerIdx) -> Option<ContainerID>
pub fn with_idx_to_id<R>(&self, f: impl FnOnce(&Vec<ContainerID>) -> R) -> R
pub fn alloc_str(&self, str: &str) -> StrAllocResult
Sourcepub fn alloc_str_with_slice(&self, str: &str) -> (BytesSlice, StrAllocResult)
pub fn alloc_str_with_slice(&self, str: &str) -> (BytesSlice, StrAllocResult)
return slice and unicode index
Sourcepub fn alloc_str_fast(&self, bytes: &[u8])
pub fn alloc_str_fast(&self, bytes: &[u8])
alloc str without extra info
pub fn utf16_len(&self) -> usize
pub fn alloc_value(&self, value: LoroValue) -> usize
pub fn alloc_values( &self, values: impl Iterator<Item = LoroValue>, ) -> Range<usize>
pub fn set_parent(&self, child: ContainerIdx, parent: Option<ContainerIdx>)
pub fn log_hierarchy(&self)
pub fn log_all_containers(&self)
pub fn get_parent(&self, child: ContainerIdx) -> Option<ContainerIdx>
Sourcepub fn with_ancestors(
&self,
container: ContainerIdx,
f: impl FnMut(ContainerIdx, bool),
)
pub fn with_ancestors( &self, container: ContainerIdx, f: impl FnMut(ContainerIdx, bool), )
Call f
on each ancestor of container
, including container
itself.
f(ContainerIdx, is_first)
pub fn slice_by_unicode(&self, range: impl RangeBounds<usize>) -> BytesSlice
pub fn slice_by_utf8(&self, range: impl RangeBounds<usize>) -> BytesSlice
pub fn slice_str_by_unicode_range(&self, range: Range<usize>) -> String
pub fn with_text_slice(&self, range: Range<usize>, f: impl FnMut(&str))
pub fn get_value(&self, idx: usize) -> Option<LoroValue>
pub fn get_values(&self, range: Range<usize>) -> Vec<LoroValue>
pub fn convert_single_op( &self, container: &ContainerID, peer: PeerID, counter: Counter, lamport: Lamport, content: RawOpContent<'_>, ) -> Op
pub fn can_import_snapshot(&self) -> bool
pub fn convert_raw_op(&self, op: &RawOp<'_>) -> Op
pub fn export_containers(&self) -> Vec<ContainerID>
pub fn export_parents(&self) -> Vec<Option<ContainerIdx>>
Sourcepub fn set_parent_resolver<F>(&self, resolver: Option<F>)
pub fn set_parent_resolver<F>(&self, resolver: Option<F>)
Register or clear a resolver to lazily determine a container’s parent when missing.
- The resolver receives the child
ContainerIdx
and returns an optionalContainerID
of its parent. - If the resolver returns
Some
,SharedArena
will register the parent in the arena and link it. - If the resolver is
None
or returnsNone
,get_parent
will panic for non-root containers as before.
Trait Implementations§
Source§fn clone(&self) -> SharedArena
fn clone(&self) -> SharedArena
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);