Trait ExtendSequenceType

Source
pub trait ExtendSequenceType<'a> {
    // Required method
    fn new(ty: Type<'a>) -> Self;
}
Expand description

Extension methods for SequenceType

Required Methods§

Source

fn new(ty: Type<'a>) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a> ExtendSequenceType<'a> for SequenceType<'a>

Source§

fn new(ty: Type<'a>) -> Self

Implementors§