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 AtomicGroup
s.
Required Associated Types§
Required Methods§
Sourcefn into_atomic_group(self, hint: &Self::Hint) -> Result<AtomicGroup>
fn into_atomic_group(self, hint: &Self::Hint) -> Result<AtomicGroup>
Convert into AtomicGroup
s.