[][src]Struct spirit::fragment::driver::Trivial

pub struct Trivial;

A trivial Driver that does no caching at all.

Every time the Driver is called, the resource is created anew and the old one replaced.

Trait Implementations

impl Clone for Trivial[src]

impl Copy for Trivial[src]

impl Debug for Trivial[src]

impl Default for Trivial[src]

impl<F: Fragment> Driver<F> for Trivial[src]

type SubFragment = F

The smaller Fragment the driver cuts F into. Read more

Auto Trait Implementations

impl RefUnwindSafe for Trivial

impl Send for Trivial

impl Sync for Trivial

impl Unpin for Trivial

impl UnwindSafe for Trivial

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> IntoResult<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.