pub struct RawFrameBufferInfo {
pub addr: PhysAddr,
pub info: FrameBufferInfo,
}Expand description
The physical address of the framebuffer and information about the framebuffer.
Fields§
§addr: PhysAddrStart address of the pixel-based framebuffer.
info: FrameBufferInfoInformation about the framebuffer, including layout and pixel format.
Trait Implementations§
Source§impl Clone for RawFrameBufferInfo
impl Clone for RawFrameBufferInfo
Source§fn clone(&self) -> RawFrameBufferInfo
fn clone(&self) -> RawFrameBufferInfo
Returns a duplicate 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 RawFrameBufferInfo
impl Debug for RawFrameBufferInfo
impl Copy for RawFrameBufferInfo
Auto Trait Implementations§
impl Freeze for RawFrameBufferInfo
impl RefUnwindSafe for RawFrameBufferInfo
impl Send for RawFrameBufferInfo
impl Sync for RawFrameBufferInfo
impl Unpin for RawFrameBufferInfo
impl UnwindSafe for RawFrameBufferInfo
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