pub trait Delete<Inst: TkInstance>{
type Index: Into<Obj>;
// Provided methods
fn delete(&self, index: impl Into<Self::Index>) -> InterpResult<()> { ... }
fn delete_range(
&self,
range: impl Into<TkRange<Self::Index>>
) -> InterpResult<()> { ... }
}Required Associated Types§
Provided Methods§
fn delete(&self, index: impl Into<Self::Index>) -> InterpResult<()>
fn delete_range( &self, range: impl Into<TkRange<Self::Index>> ) -> InterpResult<()>
Object Safety§
This trait is not object safe.