Struct glib::List
[−]
[src]
pub struct List<T> {
// some fields omitted
}pub struct List<T> {
// some fields omitted
}impl<T> List<T>fn new() -> List<T>fn from_vec(values: Vec<T>) -> List<T>fn from_slice(values: &[T]) -> List<T> where T: Clonefn append(&mut self, data: T)fn prepend(&mut self, data: T)fn nth(&self, n: u32) -> &Tfn last(&self) -> &Tfn first(&self) -> &Tfn insert(&mut self, data: T, position: i32)fn concat(&mut self, list: List<T>)fn reverse(&mut self)fn iter(&self) -> Elem<T>fn rev_iter(&self) -> RevElem<T>fn len(&self) -> usizefn clear(&mut self)fn extend<It: IntoIterator<Item=T>>(&mut self, it: It)impl<T> Index<usize> for List<T>impl<T> FromIterator<T> for List<T>fn from_iter<It: IntoIterator<Item=T>>(it: It) -> List<T>impl<T> Clone for List<T>fn clone(&self) -> List<T>fn clone_from(&mut self, source: &Self)impl<T> Drop for List<T>fn drop(&mut self)impl<T> GlibContainer<*mut GList> for List<T>
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).
Search functions by type signature (e.g.
vec -> usize)