[]Struct rslint_lexer::ANSIGenericString

pub struct ANSIGenericString<'a, S> where
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug
{ /* fields omitted */ }

An ANSIGenericString includes a generic string type and a Style to display that string. ANSIString and ANSIByteString are aliases for this type on str and \[u8], respectively.

Implementations

impl<'a, S> ANSIGenericString<'a, S> where
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

pub fn style_ref(&self) -> &Style

Directly access the style

pub fn style_ref_mut(&mut self) -> &mut Style

Directly access the style mutably

impl<'a> ANSIGenericString<'a, [u8]>

pub fn write_to<W>(&self, w: &mut W) -> Result<(), Error> where
    W: Write

Write an ANSIByteString to an io::Write. This writes the escape sequences for the associated Style around the bytes.

Trait Implementations

impl<'a, S> Clone for ANSIGenericString<'a, S> where
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

Cloning an ANSIGenericString will clone its underlying string.

Examples

use ansi_term::ANSIString;

let plain_string = ANSIString::from("a plain string");
let clone_string = plain_string.clone();
assert_eq!(clone_string, plain_string);

impl<'a, S> Debug for ANSIGenericString<'a, S> where
    S: 'a + Debug + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

impl<'a, S> Deref for ANSIGenericString<'a, S> where
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

type Target = S

The resulting type after dereferencing.

impl<'a> Display for ANSIGenericString<'a, str>

impl<'a, I, S> From<I> for ANSIGenericString<'a, S> where
    I: Into<Cow<'a, S>>,
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

impl<'a, S> PartialEq<ANSIGenericString<'a, S>> for ANSIGenericString<'a, S> where
    S: 'a + PartialEq<S> + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

impl<'a, S> StructuralPartialEq for ANSIGenericString<'a, S> where
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

Auto Trait Implementations

impl<'a, S: ?Sized> RefUnwindSafe for ANSIGenericString<'a, S> where
    S: RefUnwindSafe,
    <S as ToOwned>::Owned: RefUnwindSafe

impl<'a, S: ?Sized> Send for ANSIGenericString<'a, S> where
    S: Sync,
    <S as ToOwned>::Owned: Send

impl<'a, S: ?Sized> Sync for ANSIGenericString<'a, S> where
    S: Sync,
    <S as ToOwned>::Owned: Sync

impl<'a, S: ?Sized> Unpin for ANSIGenericString<'a, S> where
    <S as ToOwned>::Owned: Unpin

impl<'a, S: ?Sized> UnwindSafe for ANSIGenericString<'a, S> where
    S: RefUnwindSafe,
    <S as ToOwned>::Owned: UnwindSafe

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> Erasable 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> ToString for T where
    T: Display + ?Sized
[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.