[][src]Struct cursive::utils::lines::spans::Segment

pub struct Segment {
    pub span_id: usize,
    pub start: usize,
    pub end: usize,
    pub width: usize,
}

Refers to a part of a span

Fields

span_id: usize

ID of the span this segment refers to

start: usize

Beginning of this segment within the span (included)

end: usize

End of this segment within the span (excluded)

width: usize

Width of this segment

Implementations

impl Segment[src]

pub fn resolve<T>(&self, source: &SpannedStr<'a, T>) -> Span<'a, T>[src]

Resolve this segment to a string slice and an attribute.

pub fn resolve_plain<S>(&self, source: &'a S) -> &'a str where
    S: SpannedText
[src]

Resolves this segment to plain text.

pub fn source_indices<S>(&self, spans: &[S]) -> Option<(usize, usize)> where
    S: AsRef<IndexedCow>, 
[src]

Returns indices in the source string, if possible.

Returns (start, end), or None if the target span is an owned string.

Trait Implementations

impl Clone for Segment[src]

impl Copy for Segment[src]

impl Debug for Segment[src]

impl Eq for Segment[src]

impl Hash for Segment[src]

impl PartialEq<Segment> for Segment[src]

impl StructuralEq for Segment[src]

impl StructuralPartialEq for Segment[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> CallHasher for T where
    T: Hash + ?Sized
[src]

impl<T> Erased for T

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> With for T[src]