pub struct BannerConfig {
pub show_logo: bool,
pub show_docs: bool,
pub show_border: bool,
pub tagline: Option<String>,
}Expand description
Configuration for banner display.
Fields§
§show_logo: boolWhether to show the ASCII art logo.
show_docs: boolWhether to show documentation links.
show_border: boolWhether to show a border around the banner.
tagline: Option<String>Custom tagline (if any).
Trait Implementations§
Source§impl Clone for BannerConfig
impl Clone for BannerConfig
Source§fn clone(&self) -> BannerConfig
fn clone(&self) -> BannerConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BannerConfig
impl Debug for BannerConfig
Auto Trait Implementations§
impl Freeze for BannerConfig
impl RefUnwindSafe for BannerConfig
impl Send for BannerConfig
impl Sync for BannerConfig
impl Unpin for BannerConfig
impl UnsafeUnpin for BannerConfig
impl UnwindSafe for BannerConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more