pub trait Stub {
    type Ret;

    fn collect(self, _: &impl Collector) -> Self::Ret;
}
Expand description

A call, which does not result in an allocation within the block.

Required Associated Types

Call return value.

For example, [libc::size_t].

Required Methods

Implementors