servicepoint2 0.4.3

A rust library for the CCCB Service Point Display.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "c_api")]
#[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,
}