use ansi_term::{ANSIString, Style}; use std::fmt; /// 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). pub struct Segment { /// The segment's name, to be used in configuration and logging. name: String, /// The segment's style. If None, will inherit the style of the module containing it. style: Option