pub struct FileDialogToken(/* private fields */);
Expand description
A token that uniquely identifies a file dialog request.
Implementations§
Source§impl FileDialogToken
impl FileDialogToken
Sourcepub const INVALID: FileDialogToken
pub const INVALID: FileDialogToken
A token that does not correspond to any file dialog.
Sourcepub fn next() -> FileDialogToken
pub fn next() -> FileDialogToken
Create a new token.
Sourcepub const fn from_raw(id: u64) -> FileDialogToken
pub const fn from_raw(id: u64) -> FileDialogToken
Create a new token from a raw value.
Trait Implementations§
Source§impl Clone for FileDialogToken
impl Clone for FileDialogToken
Source§fn clone(&self) -> FileDialogToken
fn clone(&self) -> FileDialogToken
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FileDialogToken
impl Debug for FileDialogToken
Source§impl Hash for FileDialogToken
impl Hash for FileDialogToken
Source§impl PartialEq for FileDialogToken
impl PartialEq for FileDialogToken
Source§impl PartialOrd for FileDialogToken
impl PartialOrd for FileDialogToken
impl Copy for FileDialogToken
impl Eq for FileDialogToken
impl StructuralPartialEq for FileDialogToken
Auto Trait Implementations§
impl Freeze for FileDialogToken
impl RefUnwindSafe for FileDialogToken
impl Send for FileDialogToken
impl Sync for FileDialogToken
impl Unpin for FileDialogToken
impl UnwindSafe for FileDialogToken
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
Source§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.