pub struct Type { /* private fields */ }
Expand description
Generic information for a type
Implementations§
source§impl 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§
source§impl PartialEq for Type
impl PartialEq for Type
impl Copy for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more