Trait intrusive_collections::DefaultLinkOps[][src]

pub trait DefaultLinkOps {
    type Ops: LinkOps + Default;

    const NEW: Self::Ops;
}
Expand description

The default implementation of LinkOps associated with a link type.

Associated Types

The default link operations.

Associated Constants

The associated constant that represents Ops::default().

This exists because Default::default() is not a constant function.

Implementors