pub struct PwAffList {
pub ptr: uintptr_t,
pub should_free_on_drop: bool,
}
Expand description
Wraps isl_pw_aff_list
.
Fields§
§ptr: uintptr_t
§should_free_on_drop: bool
Implementations§
Source§impl PwAffList
impl PwAffList
Sourcepub fn set_pw_aff(self, index: i32, el: PwAff) -> PwAffList
pub fn set_pw_aff(self, index: i32, el: PwAff) -> PwAffList
Wraps isl_pw_aff_list_set_pw_aff
.
Sourcepub fn read_from_str(ctx: &Context, str_: &str) -> PwAffList
pub fn read_from_str(ctx: &Context, str_: &str) -> PwAffList
Wraps isl_pw_aff_list_read_from_str
.
Sourcepub fn get_pw_aff(&self, index: i32) -> PwAff
pub fn get_pw_aff(&self, index: i32) -> PwAff
Wraps isl_pw_aff_list_get_pw_aff
.
Sourcepub fn from_pw_aff(el: PwAff) -> PwAffList
pub fn from_pw_aff(el: PwAff) -> PwAffList
Wraps isl_pw_aff_list_from_pw_aff
.
Sourcepub fn do_not_free_on_drop(&mut self)
pub fn do_not_free_on_drop(&mut self)
Does not call isl_pw_aff_list_free() on being dropped. (For internal use only.)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PwAffList
impl RefUnwindSafe for PwAffList
impl Send for PwAffList
impl Sync for PwAffList
impl Unpin for PwAffList
impl UnwindSafe for PwAffList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more