pub struct BannerTheme {
pub emoji: &'static str,
pub logo_primary: [&'static str; 7],
pub logo_secondary: &'static str,
pub crate_version: &'static str,
pub metadata_key: &'static str,
}
Expand description
Banner display options
Fields§
§emoji: &'static str
The emoji to be displayed nex to the vexide version
logo_primary: [&'static str; 7]
The primary logo escapes (large blob)
logo_secondary: &'static str
The secondary logo escapes (small blob)
crate_version: &'static str
The escapes for the crate version
metadata_key: &'static str
The color for metadata keys
Trait Implementations§
Source§impl Clone for BannerTheme
impl Clone for BannerTheme
Source§fn clone(&self) -> BannerTheme
fn clone(&self) -> BannerTheme
Returns a copy 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 BannerTheme
impl Debug for BannerTheme
impl Copy for BannerTheme
Auto Trait Implementations§
impl Freeze for BannerTheme
impl RefUnwindSafe for BannerTheme
impl Send for BannerTheme
impl Sync for BannerTheme
impl Unpin for BannerTheme
impl UnwindSafe for BannerTheme
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