[][src]Struct hdd::drivedb::DriveDB

pub struct DriveDB { /* fields omitted */ }

Drive database that hosts its entries and allows to search for relevant data.

USB entries are currently not supported.

Implementations

impl DriveDB[src]

pub fn render_meta(
    &self,
    id: &Id,
    extra_attributes: &Vec<Attribute>
) -> DriveMeta
[src]

Matches given ATA IDENTIFY DEVICE response id against drive database db.

Return value is a merge between the default entry and the first match; if multiple entries match the id, the first one is used (this is consistent with smartmontools' lookup_drive function). extra_attributes are also appended to the list of presets afterwards.

Trait Implementations

impl Debug for DriveDB[src]

Auto Trait Implementations

impl !RefUnwindSafe for DriveDB

impl Send for DriveDB

impl Sync for DriveDB

impl Unpin for DriveDB

impl UnwindSafe for DriveDB

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.