[][src]Trait ensure::MeetAction

pub trait MeetAction {
    type Met;
    fn meet(self) -> Self::Met;
}

Function that can be used to bring object in its target state

Associated Types

type Met

Loading content...

Required methods

fn meet(self) -> Self::Met

Loading content...

Implementors

impl<MET, MF> MeetAction for MF where
    MF: FnOnce() -> MET, 
[src]

type Met = MET

Loading content...