nushell/crates/nu-command/src/network/url
Ian Manske 68fcd71898
Add Value::coerce_str (#11885)
# Description
Following #11851, this PR adds one final conversion function for
`Value`. `Value::coerce_str` takes a `&Value` and converts it to a
`Cow<str>`, creating an owned `String` for types that needed converting.
Otherwise, it returns a borrowed `str` for `String` and `Binary`
`Value`s which avoids a clone/allocation. Where possible, `coerce_str`
and `coerce_into_string` should be used instead of `coerce_string`,
since `coerce_string` always allocates a new `String`.
2024-02-18 17:47:10 +01:00
..
build_query.rs Add Value::coerce_str (#11885) 2024-02-18 17:47:10 +01:00
decode.rs Enforce required, optional, and rest positional arguments start with an uppercase and end with a period. (#11285) 2023-12-15 14:32:37 +08:00
encode.rs Fix incorrect handling of boolean flags for builtin commands (#11492) 2024-01-11 17:19:48 +02:00
join.rs Name the Value conversion functions more clearly (#11851) 2024-02-17 18:14:16 +00:00
mod.rs Add url decode command (#10611) 2023-10-05 18:43:58 +02:00
parse.rs Name the Value conversion functions more clearly (#11851) 2024-02-17 18:14:16 +00:00
url_.rs Move Value to helpers, separate span call (#10121) 2023-09-03 07:27:29 -07:00