remove accidental struct duplicate

This commit is contained in:
Vinzenz Schroeter 2024-05-28 20:39:41 +02:00
parent d351eef6fa
commit 7211e1fdc7

View file

@ -28,14 +28,3 @@ pub mod pixel_grid;
/// The minimum time needed for the display to refresh the screen in ms.
pub const FRAME_PACING_MS: u32 = servicepoint::FRAME_PACING.as_millis() as u32;
#[repr(C)]
/// Represents a span of memory (`&mut [u8]` ) as a struct usable by C code.
///
/// Usage of this type is inherently unsafe.
pub struct CByteSlice {
/// The start address of the memory
pub start: *mut u8,
/// The amount of memory in bytes
pub length: usize,
}