pub trait FilesStyleToString {
// Required method
fn to_string(&self, style: FilesStyle) -> String;
}Expand description
An interface to guarantee the creation of a String based on a FilesStyle.
Required Methods§
Sourcefn to_string(&self, style: FilesStyle) -> String
fn to_string(&self, style: FilesStyle) -> String
Returns the String representation of the implementation based on a FilesStyle.