[][src]Struct starship::segment::Segment

pub struct Segment { /* fields omitted */ }

A segment is a single configurable element in a module. This will usually contain a data point to provide context for the prompt's user (e.g. The version that software is running).

Methods

impl Segment[src]

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

Creates a new segment with default fields.

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

Sets the style of the segment.

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 segment.

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

Trait Implementations

impl Display for Segment[src]

Auto Trait Implementations

impl Sync for Segment

impl Send for Segment

impl Unpin for Segment

impl RefUnwindSafe for Segment

impl UnwindSafe for Segment

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