pub struct DisplayConsole {
pub console: Box<dyn Console>,
pub shader_index: usize,
pub font_index: usize,
}Expand description
A display console, used internally to provide console render support. Public in case you want to play with it, or access it directly.
Fields§
§console: Box<dyn Console>§shader_index: usize§font_index: usizeAuto Trait Implementations§
impl Freeze for DisplayConsole
impl !RefUnwindSafe for DisplayConsole
impl !Send for DisplayConsole
impl !Sync for DisplayConsole
impl Unpin for DisplayConsole
impl !UnwindSafe for DisplayConsole
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