Trait proj::Info[][src]

pub trait Info {
    fn info(&self) -> Result<Projinfo, ProjError> { ... }
fn network_enabled(&self) -> bool { ... }
fn get_url_endpoint(&self) -> Result<String, ProjError> { ... } }
Expand description

Read-only utility methods for providing information about the current PROJ instance

Provided methods

Return Information about the current PROJ context

Safety

This method contains unsafe code.

Check whether network access for resource file download is currently enabled or disabled.

Safety

This method contains unsafe code.

Get the URL endpoint to query for remote grids

Safety

This method contains unsafe code.

Implementors