[][src]Struct starship::module::Affix

pub struct Affix { /* fields omitted */ }

Module affixes are to be used for the prefix or suffix of a module.

Methods

impl Affix[src]

pub fn default_prefix(name: &str) -> Self[src]

pub fn default_suffix(name: &str) -> Self[src]

pub fn set_style<T>(&mut self, style: T) -> &mut Self where
    T: Into<Style>, 
[src]

Sets the style of the module.

Accepts either Color or Style.

pub fn set_value<T>(&mut self, value: T) -> &mut Self where
    T: Into<String>, 
[src]

Sets the value of the module.

pub fn ansi_string(&self) -> ANSIString[src]

Generates the colored ANSIString output.

Trait Implementations

impl Display for Affix[src]

Auto Trait Implementations

impl Sync for Affix

impl Send for Affix

impl Unpin for Affix

impl RefUnwindSafe for Affix

impl UnwindSafe for Affix

Blanket Implementations

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.

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]

impl<T> Same<T> for T

type Output = T

Should always be Self