Struct oo_bindgen::model::IteratorSettings
source · pub struct IteratorSettings {
pub next_function_suffix: Name,
}Expand description
Settings that affect iterator function naming
Fields§
§next_function_suffix: Namename of the C function which retrieve’s the iterator’s next value
is automatically generated as <c_ffi_prefix>_<iterator_class_name>_<next_function_suffix>
Implementations§
source§impl IteratorSettings
impl IteratorSettings
pub fn new(next_function_suffix: Name) -> IteratorSettings
Trait Implementations§
source§impl Debug for IteratorSettings
impl Debug for IteratorSettings
Auto Trait Implementations§
impl RefUnwindSafe for IteratorSettings
impl !Send for IteratorSettings
impl !Sync for IteratorSettings
impl Unpin for IteratorSettings
impl UnwindSafe for IteratorSettings
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