pub trait CharCountProperty {
// Required method
fn char_count_property(&self) -> usize;
}Expand description
Property for types that contain characters.
Required Methods§
Sourcefn char_count_property(&self) -> usize
fn char_count_property(&self) -> usize
Returns the number of characters contained in this type.