#[non_exhaustive]pub struct FrameBuffer {
pub minimum_framebuffer_height: Option<u64>,
pub minimum_framebuffer_width: Option<u64>,
}
Expand description
Configuration for the frame buffer used for graphical output.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.minimum_framebuffer_height: Option<u64>
Instructs the bootloader to set up a framebuffer format that has at least the given height.
If this is not possible, the bootloader will fall back to a smaller format.
minimum_framebuffer_width: Option<u64>
Instructs the bootloader to set up a framebuffer format that has at least the given width.
If this is not possible, the bootloader will fall back to a smaller format.
Implementations§
Source§impl FrameBuffer
impl FrameBuffer
Sourcepub const fn new_default() -> Self
pub const fn new_default() -> Self
Creates a default configuration without any requirements.
Trait Implementations§
Source§impl Clone for FrameBuffer
impl Clone for FrameBuffer
Source§fn clone(&self) -> FrameBuffer
fn clone(&self) -> FrameBuffer
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 FrameBuffer
impl Debug for FrameBuffer
Source§impl Default for FrameBuffer
impl Default for FrameBuffer
Source§fn default() -> FrameBuffer
fn default() -> FrameBuffer
Returns the “default value” for a type. Read more
Source§impl PartialEq for FrameBuffer
impl PartialEq for FrameBuffer
impl Copy for FrameBuffer
impl Eq for FrameBuffer
impl StructuralPartialEq for FrameBuffer
Auto Trait Implementations§
impl Freeze for FrameBuffer
impl RefUnwindSafe for FrameBuffer
impl Send for FrameBuffer
impl Sync for FrameBuffer
impl Unpin for FrameBuffer
impl UnwindSafe for FrameBuffer
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