Skip to main content

Form

Trait Form 

Source
pub trait Form {
    type Form<T>;
}
Expand description

The form that an object can take

An object can be bare (Bare), behind a Handle (BehindHandle), or can take the form of a handle and an object WithHandle.

Required Associated Types§

Source

type Form<T>

The form that the object takes

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§