Struct geos::ContextHandle

source ·
pub struct ContextHandle { /* private fields */ }

Implementations§

source§

impl ContextHandle

source

pub fn init() -> GResult<Self>

Creates a new ContextHandle.

§Example
use geos::ContextHandle;

let context_handle = ContextHandle::init().expect("invalid init");
source

pub fn set_notice_message_handler(&self, nf: Option<HandlerCallback>)

Allows to set a notice message handler.

Passing None as parameter will unset this callback.

§Example
use geos::ContextHandle;

let context_handle = ContextHandle::init().expect("invalid init");

context_handle.set_notice_message_handler(Some(Box::new(|s| println!("new message: {}", s))));
source

pub fn set_error_message_handler(&self, ef: Option<HandlerCallback>)

Allows to set an error message handler.

Passing None as parameter will unset this callback.

§Example
use geos::ContextHandle;

let context_handle = ContextHandle::init().expect("invalid init");

context_handle.set_error_message_handler(Some(Box::new(|s| println!("new message: {}", s))));
source

pub fn get_last_error(&self) -> Option<String>

Returns the last error encountered.

Please note that calling this function will remove the current last error!

use geos::ContextHandle;

let context_handle = ContextHandle::init().expect("invalid init");
// make some functions calls...
if let Some(last_error) = context_handle.get_last_error() {
    println!("We have an error: {}", last_error);
} else {
    println!("No error occurred!");
}
source

pub fn get_last_notification(&self) -> Option<String>

Returns the last notification encountered.

Please note that calling this function will remove the current last notification!

use geos::ContextHandle;

let context_handle = ContextHandle::init().expect("invalid init");
// make some functions calls...
if let Some(last_notif) = context_handle.get_last_notification() {
    println!("We have a notification: {}", last_notif);
} else {
    println!("No notifications!");
}
source

pub fn get_wkb_output_dimensions(&self) -> GResult<OutputDimension>

Gets WKB output dimensions.

§Example
use geos::{ContextHandle, OutputDimension};

let mut context_handle = ContextHandle::init().expect("invalid init");

context_handle.set_wkb_output_dimensions(OutputDimension::TwoD);
assert_eq!(context_handle.get_wkb_output_dimensions(), Ok(OutputDimension::TwoD));
source

pub fn set_wkb_output_dimensions( &mut self, dimensions: OutputDimension ) -> GResult<OutputDimension>

Sets WKB output dimensions.

§Example
use geos::{ContextHandle, OutputDimension};

let mut context_handle = ContextHandle::init().expect("invalid init");

context_handle.set_wkb_output_dimensions(OutputDimension::TwoD);
assert_eq!(context_handle.get_wkb_output_dimensions(), Ok(OutputDimension::TwoD));
source

pub fn get_wkb_byte_order(&self) -> ByteOrder

Gets WKB byte order.

§Example
use geos::{ContextHandle, ByteOrder};

let mut context_handle = ContextHandle::init().expect("invalid init");

context_handle.set_wkb_byte_order(ByteOrder::LittleEndian);
assert!(context_handle.get_wkb_byte_order() == ByteOrder::LittleEndian);
source

pub fn set_wkb_byte_order(&mut self, byte_order: ByteOrder) -> ByteOrder

Sets WKB byte order.

§Example
use geos::{ContextHandle, ByteOrder};

let mut context_handle = ContextHandle::init().expect("invalid init");

context_handle.set_wkb_byte_order(ByteOrder::LittleEndian);
assert!(context_handle.get_wkb_byte_order() == ByteOrder::LittleEndian);

Trait Implementations§

source§

impl Drop for ContextHandle

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.