pub struct Type { /* private fields */ }Expand description
Generic information for a type
Implementations
sourceimpl Type
impl Type
sourcepub fn new(
matcher_type: MatcherType,
mime_type: &'static str,
extension: &'static str,
matcher: Matcher
) -> Self
pub fn new(
matcher_type: MatcherType,
mime_type: &'static str,
extension: &'static str,
matcher: Matcher
) -> Self
Returns a new Type with matcher and extension.
sourcepub const fn matcher_type(&self) -> MatcherType
pub const fn matcher_type(&self) -> MatcherType
Returns the type of matcher
Examples
let info = infer::Infer::new();
let buf = [0xFF, 0xD8, 0xFF, 0xAA];
let kind = info.get(&buf).expect("file type is known");
assert_eq!(kind.matcher_type(), infer::MatcherType::Image);Trait Implementations
impl Copy for Type
Auto Trait Implementations
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more