pub struct CGRAMGraph {
pub upper: [u8; 8],
pub lower: Option<[u8; 3]>,
}
Expand description
CGRAMGraph
represent a graph inside a CGRAM, that can be draw on screen
Fields§
§upper: [u8; 8]
This is the upper part of the graph.
It shows for both 5x8 and 5x11 Font
lower: Option<[u8; 3]>
This is the lower part of the graph.
It shows only 5x11 Font.
Although this part is only 3 u8, but in LCD hardware, it will occupied a full graph point.
Trait Implementations§
Source§impl Default for CGRAMGraph
impl Default for CGRAMGraph
Source§fn default() -> CGRAMGraph
fn default() -> CGRAMGraph
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CGRAMGraph
impl RefUnwindSafe for CGRAMGraph
impl Send for CGRAMGraph
impl Sync for CGRAMGraph
impl Unpin for CGRAMGraph
impl UnwindSafe for CGRAMGraph
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