[][src]Struct tree_magic::TypeStruct

pub struct TypeStruct {
    pub graph: DiGraph<String, u32>,
    pub hash: FnvHashMap<String, NodeIndex>,
}

Information about currently loaded MIME types

The graph contains subclass relations between all given mimes. (EX: application/json -> text/plain -> application/octet-stream) This is a petgraph DiGraph, so you can walk the tree if needed.

The hash is a mapping between MIME types and nodes on the graph. The root of the graph is "all/all", so start traversing there unless you need to jump to a particular node.

Fields

graph: DiGraph<String, u32>hash: FnvHashMap<String, NodeIndex>

Auto Trait Implementations

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.