boreholeio 0.1.0

A library for interacting with borehole.io, a subsurface data management, delivery and visualisation platform
Documentation
pub struct Authority<'a>(pub(super) &'a str);

impl Authority<'_> {
    pub const EMPTY: Self = Self("");

    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    pub fn userinfo(&self) -> Option<&str> {
        todo!()
    }

    pub fn host(&self) -> &str {
        todo!()
    }

    pub fn port(&self) -> Option<&str> {
        todo!()
    }
}