1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use glib::translate::*;
use glib::GString;
use std::iter::{FusedIterator, IntoIterator};
pub struct FileAttributematcherIter(crate::FileAttributeMatcher);
impl Iterator for FileAttributematcherIter {
type Item = GString;
#[doc(alias = "g_file_attribute_matcher_enumerate_next")]
fn next(&mut self) -> Option<GString> {
unsafe {
from_glib_none(ffi::g_file_attribute_matcher_enumerate_next(
self.0.to_glib_none().0,
))
}
}
}
impl FusedIterator for FileAttributematcherIter {}
impl IntoIterator for crate::FileAttributeMatcher {
type Item = GString;
type IntoIter = FileAttributematcherIter;
fn into_iter(self) -> Self::IntoIter {
FileAttributematcherIter(self)
}
}