pub struct IteratorSettings {
pub next_function_suffix: Name,
}
Expand description
Settings that affect iterator function naming
Fields§
§next_function_suffix: Name
name 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 Freeze for IteratorSettings
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