Struct xdg_mime::Guess[][src]

pub struct Guess { /* fields omitted */ }

The result of the guess method of GuessBuilder.

Implementations

impl Guess[src]

pub fn mime_type(&self) -> &Mime[src]

The guessed MIME type.

pub fn uncertain(&self) -> bool[src]

Whether the guessed MIME type is uncertain.

If the MIME type was guessed only from its file name there can be multiple matches, but the mime_type method will return just the first match.

If you only have a file name, and you want to gather all potential matches, you should use the get_mime_types_from_file_name method instead of performing a guess.

Auto Trait Implementations

impl RefUnwindSafe for Guess

impl Send for Guess

impl Sync for Guess

impl Unpin for Guess

impl UnwindSafe for Guess

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.