Trait FnExt

Source
pub trait FnExt<Args: Tuple>: FnMutExt<Args> {
    // Required methods
    fn postcondition(self, _: Args, _: Self::Output) -> bool;
    fn fn_mut(self, args: Args, res_state: Self, res: Self::Output);
    fn fn_once(self, args: Args, res: Self::Output)
       where Self: Sized;
}
Expand description

FnExt is an extension trait for the Fn trait, used for adding a specification to closures. It should not be used directly.

Required Methods§

Source

fn postcondition(self, _: Args, _: Self::Output) -> bool

logic(prophetic)

Source

fn fn_mut(self, args: Args, res_state: Self, res: Self::Output)

law

ensures

self.postcondition_mut(args, res_state, res) == (self == res_state && self.postcondition(args, res))
Source

fn fn_once(self, args: Args, res: Self::Output)
where Self: Sized,

law

ensures

self.postcondition_once(args, res) == (resolve(&self) && self.postcondition(args, res))

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Args: Tuple, F: Fn<Args>> FnExt<Args> for F