[][src]Struct ra_vfs::VfsTask

pub struct VfsTask(_);

Opaque wrapper around file-system event.

Calling code is expected to just pass VfsTask to handle_task method. It is exposed as a public API so that the caller can plug vfs events into the main event loop and be notified when changes happen.

Trait Implementations

impl Debug for VfsTask[src]

Auto Trait Implementations

impl RefUnwindSafe for VfsTask

impl Send for VfsTask

impl Sync for VfsTask

impl Unpin for VfsTask

impl UnwindSafe for VfsTask

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.