Replace trim_{left, right} with trim_{start, end}
As of rust 1.33.0, trim_left
and trim_right
have been deprecated in favor of trim_start
and trim_end
, respectively.
As of rust 1.33.0, trim_left
and trim_right
have been deprecated in favor of trim_start
and trim_end
, respectively.