Trait IntoAtomicGroup

Source
pub trait IntoAtomicGroup {
    type Hint;

    // Required method
    fn into_atomic_group(self, hint: &Self::Hint) -> Result<AtomicGroup>;
}
Expand description

A trait representing types that can be converted into AtomicGroups.

Required Associated Types§

Source

type Hint

Hint.

Required Methods§

Source

fn into_atomic_group(self, hint: &Self::Hint) -> Result<AtomicGroup>

Convert into AtomicGroups.

Implementors§