pub enum CommandType {
Text {
block: Vec<u16>,
},
Centered {
block: Vec<u16>,
},
NewLine {},
Foreground {
col: RGBA,
},
Background {
col: RGBA,
},
TextWrapper {
block: String,
},
Reset {},
}
Variants§
Auto Trait Implementations§
impl Freeze for CommandType
impl RefUnwindSafe for CommandType
impl Send for CommandType
impl Sync for CommandType
impl Unpin for CommandType
impl UnwindSafe for CommandType
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