[][src]Trait proj::Info

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

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

Provided methods

fn info(&self) -> Result<Projinfo, ProjError>

Return Information about the current PROJ context

Safety

This method contains unsafe code.

fn network_enabled(&self) -> bool

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

Safety

This method contains unsafe code.

fn get_url_endpoint(&self) -> Result<String, ProjError>

Get the URL endpoint to query for remote grids

Safety

This method contains unsafe code.

Loading content...

Implementors

impl Info for Proj[src]

impl Info for ProjBuilder[src]

Loading content...