#[repr(C)]pub struct LV2_Event_Iterator {
pub buf: *mut LV2_Event_Buffer,
pub offset: u32,
}Expand description
An iterator over an LV2_Event_Buffer.
Multiple simultaneous read iterators over a single buffer is fine, but changing the buffer invalidates all iterators.
Fields§
§buf: *mut LV2_Event_Buffer§offset: u32Trait Implementations§
Source§impl Clone for LV2_Event_Iterator
impl Clone for LV2_Event_Iterator
Source§fn clone(&self) -> LV2_Event_Iterator
fn clone(&self) -> LV2_Event_Iterator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LV2_Event_Iterator
impl Debug for LV2_Event_Iterator
impl Copy for LV2_Event_Iterator
Auto Trait Implementations§
impl Freeze for LV2_Event_Iterator
impl RefUnwindSafe for LV2_Event_Iterator
impl !Send for LV2_Event_Iterator
impl !Sync for LV2_Event_Iterator
impl Unpin for LV2_Event_Iterator
impl UnwindSafe for LV2_Event_Iterator
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