fancy_print

Struct FancyPrinter

Source
pub struct FancyPrinter { /* private fields */ }
Expand description

Struct to print text to the stdout using various animations

§Example

The example below builds a FancyPrinter that uses the CharacterCycling animation with a delay of 2ms between frames, with frames being printed on the same line and respects newline characters. It then prints “Hello, world!”.

use fancy_print::{FancyPrinter, Animation};
use std::time::Duration;

let printer = FancyPrinter::builder()
    .animation(Animation::CharacterCycling)
    .time_delay(Duration::from_millis(2))
    .multi_line(false)
    .ignore_newlines(false)
    .build();

printer.print("Hello, world!");

The options used in the above example are the defaults for the FancyPrinterBuilder struct which is returned when the builder() function is called.

let printer = FancyPrinter::builder()
    .animation(Animation::CharacterCycling)
    .time_delay(Duration::from_millis(2))
    .multi_line(false)
    .ignore_newlines(false)
    .build();

let default_printer = FancyPrinter::builder().build();

assert_eq!(printer, default_printer);

Implementations§

Source§

impl FancyPrinter

Source

pub fn builder() -> FancyPrinterBuilder

Returns a FancyPrinterBuilder to construct a new FancyPrinter with

Source

pub fn print<T: ToString>(&self, text: T)

Prints the given text with the FancyPrinter

§Panics

Panics if text isn’t ASCII

Trait Implementations§

Source§

impl Debug for FancyPrinter

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for FancyPrinter

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for FancyPrinter

Source§

fn eq(&self, other: &FancyPrinter) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for FancyPrinter

Source§

impl StructuralPartialEq for FancyPrinter

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.