Trait constriction::PosSeek[][src]

pub trait PosSeek {
    type Position: Clone;
}
Expand description

Trait for coders or backends that might implement Pos and/or Seek

If a type implements PosSeek then that doesn’t necessarily mean that it also implements Pos or Seek. Implementing PosSeek only fixes the common Position type that is used if the type implements Pos and/or Seek.

Associated Types

Implementations on Foreign Types

Implementors