Struct glib::SList
[−]
[src]
pub struct SList<T> {
// some fields omitted
}pub struct SList<T> {
// some fields omitted
}impl<T> SList<T>fn new() -> SList<T>fn from_vec(values: Vec<T>) -> SList<T>fn from_slice(values: &[T]) -> SList<T> where T: Clonefn append(&mut self, data: T)fn prepend(&mut self, data: T)fn nth(&self, n: u32) -> &Tfn last(&self) -> &Tfn insert(&mut self, data: T, position: i32)fn concat(&mut self, list: SList<T>)fn reverse(&mut self)fn iter(&self) -> SElem<T>fn len(&self) -> usizefn clear(&mut self)fn extend<It: IntoIterator<Item=T>>(&mut self, it: It)impl<T> Index<usize> for SList<T>impl<T> FromIterator<T> for SList<T>fn from_iter<It: IntoIterator<Item=T>>(it: It) -> SList<T>impl<T> Clone for SList<T>fn clone(&self) -> SList<T>fn clone_from(&mut self, source: &Self)impl<T> Drop for SList<T>fn drop(&mut self)impl<T> GlibContainer<*mut GSList> for SList<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)