[][src]Struct mc_legacy_formatting::PrintSpanColored

pub struct PrintSpanColored<'a>(_);

A wrapper around Span that provides colored pretty-printing

Examples

use mc_legacy_formatting::{SpanExt, Span};

let s = "§4This will be dark red §oand italic";
s.span_iter().map(Span::wrap_colored).for_each(|s| print!("{}", s));
println!();

// Output will look close to what you'd see in Minecraft (ignoring the font difference)

Trait Implementations

impl<'a> Display for PrintSpanColored<'a>[src]

impl<'a> From<Span<'a>> for PrintSpanColored<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PrintSpanColored<'a>

impl<'a> Send for PrintSpanColored<'a>

impl<'a> Sync for PrintSpanColored<'a>

impl<'a> Unpin for PrintSpanColored<'a>

impl<'a> UnwindSafe for PrintSpanColored<'a>

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

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

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.