Trait tea_map::MapBasic

source ·
pub trait MapBasic: TrustedLen
where Self: Sized,
{ // Provided methods fn abs(self) -> impl TrustedLen<Item = Self::Item> where Self::Item: Number { ... } fn shift<'a>( self, n: i32, value: Self::Item, ) -> Box<dyn TrustedLen<Item = Self::Item> + 'a> where Self::Item: Clone + 'a, Self: Sized + 'a { ... } }

Provided Methods§

source

fn abs(self) -> impl TrustedLen<Item = Self::Item>
where Self::Item: Number,

source

fn shift<'a>( self, n: i32, value: Self::Item, ) -> Box<dyn TrustedLen<Item = Self::Item> + 'a>
where Self::Item: Clone + 'a, Self: Sized + 'a,

Object Safety§

This trait is not object safe.

Implementors§