Function urlutils::join_segment_parameters_raw
source · pub fn join_segment_parameters_raw(
base: &str,
subsegments: &[&str]
) -> Result<String, Error>
Expand description
Create a new URL by adding subsegments to an existing one.
This adds the specified subsegments to the last path in the specified base URL. The subsegments should be bytestrings.
Note: You probably want to use join_segment_parameters instead.