[][src]Struct serde_closure::structs::FnMut

pub struct FnMut<F> { /* fields omitted */ }

A struct representing a serializable closure, created by the FnMut macro. Implements std::ops::FnMut, Debug, Serialize and Deserialize, and various convenience traits.

See the readme for examples.

Trait Implementations

impl<F, I> FnMut<I> for FnMut<F> where
    F: FnMut<I>, 
[src]

impl<F, I> FnOnce<I> for FnMut<F> where
    F: FnOnce<I>, 
[src]

type Output = F::Output

The returned type after the call operator is used.

impl<F: Clone> Clone for FnMut<F>[src]

impl<F: Copy> Copy for FnMut<F>[src]

impl<F: Eq> Eq for FnMut<F>[src]

impl<F: Ord> Ord for FnMut<F>[src]

impl<F: PartialEq> PartialEq<FnMut<F>> for FnMut<F>[src]

impl<F: PartialOrd> PartialOrd<FnMut<F>> for FnMut<F>[src]

impl<F> Debug for FnMut<F> where
    F: Debug
[src]

impl<F: Hash> Hash for FnMut<F>[src]

impl<F> Serialize for FnMut<F> where
    F: Serialize
[src]

impl<'de, F> Deserialize<'de> for FnMut<F> where
    F: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<F> Send for FnMut<F> where
    F: Send

impl<F> Sync for FnMut<F> where
    F: Sync

impl<F> Unpin for FnMut<F> where
    F: Unpin

impl<F> UnwindSafe for FnMut<F> where
    F: UnwindSafe

impl<F> RefUnwindSafe for FnMut<F> where
    F: RefUnwindSafe

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<'a, F> Pattern<'a> for F where
    F: FnMut(char) -> bool
[src]

type Searcher = CharPredicateSearcher<'a, F>

🔬 This is a nightly-only experimental API. (pattern)

API not fully fleshed out and ready to be stabilized

Associated searcher for this pattern

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]