[][src]Struct prolog_parser::string_list::StringList

pub struct StringList { /* fields omitted */ }

Methods

impl StringList[src]

pub fn new(s: String, expandable: bool) -> Self[src]

pub fn is_expandable(&self) -> bool[src]

pub fn set_expandable(&self, value: bool)[src]

pub fn len(&self) -> usize[src]

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

pub fn starts_with(&self, pat: &StringList) -> bool[src]

pub fn append_suffix(&mut self, suffix: &StringList)[src]

pub fn push_char(&mut self, c: char) -> Self[src]

pub fn append(&mut self, s: &StringList)[src]

pub fn cursor(&self) -> usize[src]

pub fn char_span(&self, index: usize) -> String[src]

pub fn head(&self) -> Option<char>[src]

pub fn tail(&self) -> Self[src]

pub fn is_empty(&self) -> bool[src]

pub fn borrow(&self) -> Ref<String>[src]

Trait Implementations

impl Eq for StringList[src]

impl Clone for StringList[src]

impl PartialOrd<StringList> for StringList[src]

impl PartialEq<StringList> for StringList[src]

impl Ord for StringList[src]

impl Hash for StringList[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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]