Struct nu_ansi_term::AnsiGenericString[][src]

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

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: 'a + ToOwned + ?Sized> AnsiGenericString<'a, S> where
    <S as ToOwned>::Owned: Debug
[src]

pub fn style_ref(&self) -> &Style[src]

Directly access the style

pub fn style_ref_mut(&mut self) -> &mut Style[src]

Directly access the style mutably

impl<'a> AnsiGenericString<'a, [u8]>[src]

pub fn write_to<W: Write>(&self, w: &mut W) -> Result<()>[src]

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

Trait Implementations

impl<'a, S: 'a + ToOwned + ?Sized> Clone for AnsiGenericString<'a, S> where
    <S as ToOwned>::Owned: Debug
[src]

Cloning an ANSIGenericString will clone its underlying string.

Examples

use nu_ansi_term::ANSIString;

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

fn clone(&self) -> AnsiGenericString<'a, S>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, S: Debug + 'a + ToOwned + ?Sized> Debug for AnsiGenericString<'a, S> where
    <S as ToOwned>::Owned: Debug
[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a, S: 'a + ToOwned + ?Sized> Deref for AnsiGenericString<'a, S> where
    <S as ToOwned>::Owned: Debug
[src]

type Target = S

The resulting type after dereferencing.

fn deref(&self) -> &S[src]

Dereferences the value.

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

fn from(input: I) -> AnsiGenericString<'a, S>[src]

Performs the conversion.

impl<'a, S: PartialEq + 'a + ToOwned + ?Sized> PartialEq<AnsiGenericString<'a, S>> for AnsiGenericString<'a, S> where
    <S as ToOwned>::Owned: Debug
[src]

fn eq(&self, other: &AnsiGenericString<'a, S>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &AnsiGenericString<'a, S>) -> bool[src]

This method tests for !=.

impl<'a, S: 'a + ToOwned + ?Sized> StructuralPartialEq for AnsiGenericString<'a, S> where
    <S as ToOwned>::Owned: Debug
[src]

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.