pub struct Context {
pub ptr: uintptr_t,
}Expand description
Wraps isl_ctx.
Fields
ptr: uintptr_tImplementations
sourceimpl Context
impl Context
sourcepub fn set_max_operations(&self, max_operations: u64)
pub fn set_max_operations(&self, max_operations: u64)
Wraps isl_ctx_set_max_operations.
sourcepub fn get_max_operations(&self) -> u64
pub fn get_max_operations(&self) -> u64
Wraps isl_ctx_get_max_operations.
sourcepub fn reset_operations(&self)
pub fn reset_operations(&self)
Wraps isl_ctx_reset_operations.
sourcepub fn last_error_msg(&self) -> &str
pub fn last_error_msg(&self) -> &str
Wraps isl_ctx_last_error_msg.
sourcepub fn last_error_file(&self) -> &str
pub fn last_error_file(&self) -> &str
Wraps isl_ctx_last_error_file.
sourcepub fn last_error_line(&self) -> i32
pub fn last_error_line(&self) -> i32
Wraps isl_ctx_last_error_line.
sourcepub fn reset_error(&self)
pub fn reset_error(&self)
Wraps isl_ctx_reset_error.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more