nushell/crates/nu-command/src/database
Ian Manske 93096a07aa
Implement Display for CellPath (#11023)
# Description
Because `CellPath::into_string` takes a borrowed `self`, I renamed it to
`to_string` to follow Rust [API
guidelines](https://rust-lang.github.io/api-guidelines/naming.html#ad-hoc-conversions-follow-as_-to_-into_-conventions-c-conv).
This then triggered the clippy lint
[inherent_to_string](https://rust-lang.github.io/rust-clippy/master/index.html#/inherent_to_string),
which is... correct! The current `CellPath::into_string` is being used
as if it were the `Display` implementation for `CellPath`.

# User-Facing Changes
Breaking API change for `nu-protocol`, since `CellPath::into_string` was
removed.
2023-11-10 21:12:51 +01:00
..
commands Implement Display for CellPath (#11023) 2023-11-10 21:12:51 +01:00
values Convert more examples and tests to record! macro (#10840) 2023-10-28 14:52:31 +02:00
mod.rs Remove sqlparser SQLite commands (#7040) 2022-11-10 11:14:48 +13:00