boreholeio 0.1.0

A library for interacting with borehole.io, a subsurface data management, delivery and visualisation platform
Documentation
1
2
3
4
5
6
7
8
9
use iri_string::types::{UriQueryStr, UriQueryString};

pub struct Query(#[expect(unused)] UriQueryString);

impl From<&UriQueryStr> for Query {
    fn from(value: &UriQueryStr) -> Self {
        Self(value.to_owned())
    }
}