[−][src]Struct gstreamer::Iterator
Implementations
impl<T> Iterator<T> where
T: FromValueOptional<'a> + 'static,
[src]
T: FromValueOptional<'a> + 'static,
pub unsafe fn into_ptr(self) -> *mut GstIterator
[src]
pub fn next(&mut self) -> Result<Option<T>, IteratorError>
[src]
pub fn resync(&mut self)
[src]
pub fn filter<F>(self, func: F) -> Self where
F: Fn(T) -> bool + Send + Sync + 'static,
[src]
F: Fn(T) -> bool + Send + Sync + 'static,
pub fn find<F>(&mut self, func: F) -> Option<T> where
F: FnMut(T) -> bool,
[src]
F: FnMut(T) -> bool,
pub fn foreach<F>(&mut self, func: F) -> Result<(), IteratorError> where
F: FnMut(T),
[src]
F: FnMut(T),
pub fn fold<F, U>(&mut self, init: U, func: F) -> Result<U, IteratorError> where
F: FnMut(U, T) -> Result<U, U>,
[src]
F: FnMut(U, T) -> Result<U, U>,
impl<T> Iterator<T> where
T: FromValueOptional<'a> + StaticType + ToValue + Send + 'static,
[src]
T: FromValueOptional<'a> + StaticType + ToValue + Send + 'static,
pub fn new<I: IteratorImpl<T>>(imp: I) -> Self
[src]
impl<T> Iterator<T> where
T: FromValueOptional<'a> + StaticType + ToValue + Clone + Send + 'static,
[src]
T: FromValueOptional<'a> + StaticType + ToValue + Clone + Send + 'static,
Trait Implementations
impl<T: StaticType + 'static> Clone for Iterator<T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Debug for Iterator<T>
[src]
impl<T> Drop for Iterator<T>
[src]
impl<T> IntoIterator for Iterator<T> where
T: FromValueOptional<'a> + 'static,
[src]
T: FromValueOptional<'a> + 'static,
type Item = Result<T, IteratorError>
The type of the elements being iterated over.
type IntoIter = StdIterator<T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
impl<T> Send for Iterator<T>
[src]
impl<T> StaticType for Iterator<T>
[src]
fn static_type() -> Type
[src]
impl<T> Sync for Iterator<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Iterator<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Unpin for Iterator<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Iterator<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToSendValue for T where
T: ToValue + SetValue + Send + ?Sized,
[src]
T: ToValue + SetValue + Send + ?Sized,
fn to_send_value(&self) -> SendValue
[src]
impl<T> ToValue for T where
T: SetValue + ?Sized,
[src]
T: SetValue + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,