Struct limine_protocol::structures::terminal::Terminal
source · [−]#[repr(C)]pub struct Terminal {
pub columns: u32,
pub rows: u32,
pub framebuffer: *mut Framebuffer,
}Expand description
Terminal structure
Fields
columns: u32How many columns are in the terminal
rows: u32How many rows are in the terminal
framebuffer: *mut FramebufferThe terminal’s framebuffer
Trait Implementations
impl Eq for Terminal
impl StructuralEq for Terminal
impl StructuralPartialEq for Terminal
Auto Trait Implementations
impl RefUnwindSafe for Terminal
impl !Send for Terminal
impl !Sync for Terminal
impl Unpin for Terminal
impl UnwindSafe for Terminal
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more