pub trait RemoveFnl {
type Output;
// Required method
fn remove_fnl(&self) -> Self::Output;
}Expand description
This trait defines a method for removing the first and last entries within an entity.
Typically, this is used to remove the first and last characters of a string, such as a quote or a parenthesis.