[][src]Struct xi_rope::multiset::SubsetBuilder

pub struct SubsetBuilder { /* fields omitted */ }

Methods

impl SubsetBuilder[src]

pub fn new() -> SubsetBuilder[src]

pub fn pad_to_len(&mut self, total_len: usize)[src]

Intended for use with add_range to ensure the total length of the Subset corresponds to the document length.

pub fn add_range(&mut self, begin: usize, end: usize, count: usize)[src]

Sets the count for a given range. This method must be called with a non-empty range with begin not before the largest range or segment added so far. Gaps will be filled with a 0-count segment.

pub fn push_segment(&mut self, len: usize, count: usize)[src]

Assign count to the next len elements in the string. Will panic if called with len==0.

pub fn build(self) -> Subset[src]

Trait Implementations

impl Default for SubsetBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]