4 releases

0.1.3 Feb 5, 2022
0.1.2 Oct 16, 2020
0.1.1 Sep 6, 2020
0.1.0 Jul 9, 2020

#2039 in Embedded development

Download history 2/week @ 2024-11-13 8/week @ 2024-11-20 9/week @ 2024-11-27 12/week @ 2024-12-04 26/week @ 2024-12-11 6/week @ 2024-12-18 15/week @ 2025-01-15 1/week @ 2025-01-22 22/week @ 2025-01-29 39/week @ 2025-02-05 11/week @ 2025-02-12 16/week @ 2025-02-19 28/week @ 2025-02-26

97 downloads per month
Used in 4 crates (3 directly)

MIT license

3KB

BlockDevice trait

pub trait BlockDevice {
    const BLOCK_SIZE: u32 = 512;
    
    type Error;
    fn read(&self, buf: &mut [u8], address: usize, number_of_blocks: usize) -> Result<(), Self::Error>;
    fn write(&self, buf: &[u8], address: usize, number_of_blocks: usize) -> Result<(), Self::Error>;
}

lib.rs:

BlockDevice trait

pub trait BlockDevice {
    const BLOCK_SIZE: u32 = 512;

    type Error;
    fn read(&self, buf: &mut [u8], address: usize, number_of_blocks: usize) -> Result<(), Self::Error>;
    fn write(&self, buf: &[u8], address: usize, number_of_blocks: usize) -> Result<(), Self::Error>;
}

No runtime deps