[][src]Struct qt_widgets::q_file_dialog::FileMode

#[repr(transparent)]
pub struct FileMode(_);

This enum is used to indicate what the user may select in the file dialog; i.e. what the dialog will return if the user clicks OK.

C++ enum: QFileDialog::FileMode.

C++ documentation:

This enum is used to indicate what the user may select in the file dialog; i.e. what the dialog will return if the user clicks OK.

This value is obsolete since Qt 4.5:

See also setFileMode().

Methods

impl FileMode[src]

pub fn to_int(&self) -> c_int[src]

impl FileMode[src]

pub const AnyFile: FileMode[src]

The name of a file, whether it exists or not. (C++ enum variant: AnyFile = 0)

pub const ExistingFile: FileMode[src]

The name of a single existing file. (C++ enum variant: ExistingFile = 1)

pub const Directory: FileMode[src]

The name of a directory. Both files and directories are displayed. However, the native Windows file dialog does not support displaying files in the directory chooser. (C++ enum variant: Directory = 2)

pub const ExistingFiles: FileMode[src]

The names of zero or more existing files. (C++ enum variant: ExistingFiles = 3)

pub const DirectoryOnly: FileMode[src]

Use Directory and setOption(ShowDirsOnly, true) instead. (C++ enum variant: DirectoryOnly = 4)

Trait Implementations

impl Eq for FileMode[src]

impl Clone for FileMode[src]

impl PartialEq<FileMode> for FileMode[src]

impl From<i32> for FileMode[src]

impl From<FileMode> for c_int[src]

impl Copy for FileMode[src]

impl Debug for FileMode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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

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

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]