Create URI's for Pexels API using the builderpattern.
This is not an official crate from Pexels, their documentation can be found here
# Examples
```rust use pexels_uri::{videos, Orientation};
fn main() -> Result<(), Box
assert_eq!(
"https://api.pexels.com/videos/search?query=Dogs+running&per_page=25&orientation=landscape",
uri_builder.create_uri()?
);
Ok(())
}
```