[][src]Struct embedded_sdmmc::Controller

pub struct Controller<D, T> where
    D: BlockDevice,
    T: TimeSource,
    <D as BlockDevice>::Error: Debug
{ /* fields omitted */ }

A Controller wraps a block device and gives access to the volumes within it.

Methods

impl<D, T> Controller<D, T> where
    D: BlockDevice,
    T: TimeSource,
    <D as BlockDevice>::Error: Debug
[src]

pub fn new(block_device: D, timesource: T) -> Controller<D, T>[src]

Create a new Disk Controller using a generic BlockDevice. From this controller we can open volumes (partitions) and with those we can open files.

pub fn device(&mut self) -> &mut D[src]

Temporarily get access to the underlying block device.

pub fn get_volume(
    &mut self,
    volume_idx: VolumeIdx
) -> Result<Volume, Error<D::Error>>
[src]

Get a volume (or partition) based on entries in the Master Boot Record. We do not support GUID Partition Table disks. Nor do we support any concept of drive letters - that is for a higher layer to handle.

pub fn open_root_dir(
    &mut self,
    volume: &Volume
) -> Result<Directory, Error<D::Error>>
[src]

Open a directory. You can then read the directory entries in a random order using get_directory_entry.

TODO: Work out how to prevent damage occuring to the file system while this directory handle is open. In particular, stop this directory being unlinked.

pub fn open_dir(
    &mut self,
    volume: &Volume,
    parent_dir: &Directory,
    name: &str
) -> Result<Directory, Error<D::Error>>
[src]

Open a directory. You can then read the directory entries in a random order using get_directory_entry.

TODO: Work out how to prevent damage occuring to the file system while this directory handle is open. In particular, stop this directory being unlinked.

pub fn close_dir(&mut self, volume: &Volume, dir: Directory)[src]

Close a directory. You cannot perform operations on an open directory and so must close it if you want to do something with it.

pub fn find_directory_entry(
    &mut self,
    volume: &Volume,
    dir: &Directory,
    name: &str
) -> Result<DirEntry, Error<D::Error>>
[src]

Look in a directory for a named file.

pub fn iterate_dir<F>(
    &mut self,
    volume: &Volume,
    dir: &Directory,
    func: F
) -> Result<(), Error<D::Error>> where
    F: FnMut(&DirEntry), 
[src]

Call a callback function for each directory entry in a directory.

pub fn open_file_in_dir(
    &mut self,
    volume: &Volume,
    dir: &Directory,
    name: &str,
    mode: Mode
) -> Result<File, Error<D::Error>>
[src]

Open a file with the given full path. A file can only be opened once.

pub fn read(
    &mut self,
    volume: &Volume,
    file: &mut File,
    buffer: &mut [u8]
) -> Result<usize, Error<D::Error>>
[src]

Read from an open file.

pub fn close_file(
    &mut self,
    volume: &Volume,
    file: File
) -> Result<(), Error<D::Error>>
[src]

Close a file with the given full path.

Auto Trait Implementations

impl<D, T> Send for Controller<D, T> where
    D: Send,
    T: Send

impl<D, T> Sync for Controller<D, T> where
    D: Sync,
    T: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]