pub trait ToParts {
    // Required method
    fn to_parts(&self) -> String;
}
Expand description

A trait for all types that can convert themselves into a parts string

Required Methods§

source

fn to_parts(&self) -> String

Implementors§