pub trait TextLen: Copy + Sealed {
    fn text_len(self) -> TextSize;
}
Expand description

Primitives with a textual length that can be passed to TextSize::of.

Required Methods

The textual length of this primitive.

Implementations on Foreign Types

Implementors