Struct glib::value::Value [] [src]

pub struct Value(_);

A generic value capable of carrying various types.

Once created the type of the value can't be changed.

Some types (e.g. String and objects) support None values while others (e.g. numeric types) don't.

See the module documentation for more details.

Methods

impl Value
[src]

Tries to downcast to a TypedValue.

Returns Ok(TypedValue<T>) if the value carries a type corresponding to T and Err(self) otherwise.

Tries to get a value of type T.

Returns Some if the type is correct and the value is not None.

This function doesn't distinguish between type mismatches and correctly typed None values. Use downcast or is for that.

Returns true if the type of the value corresponds to T.

Returns the type of the value.

Returns whether Values of type src can be transformed to type dst.

Trait Implementations

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Drop for Value
[src]

A method called when the value goes out of scope. Read more

impl Debug for Value
[src]

Formats the value using the given formatter.

impl<'a, T: ?Sized + SetValueOptional> From<Option<&'a T>> for Value
[src]

Performs the conversion.

impl<'a, T: ?Sized + SetValue> From<&'a T> for Value
[src]

Performs the conversion.

impl<T> From<TypedValue<T>> for Value
[src]

Performs the conversion.

impl Uninitialized for Value
[src]

Returns an uninitialized value.

impl<'a> ToGlibPtr<'a, *const GValue> for Value
[src]

Transfer: none. Read more

Transfer: container. Read more

Transfer: full. Read more

impl<'a> ToGlibPtrMut<'a, *mut GValue> for Value
[src]

Transfer: none. Read more

impl<'a> ToGlibContainerFromSlice<'a, *mut GValue> for &'a Value
[src]

impl<'a> ToGlibContainerFromSlice<'a, *const GValue> for &'a Value
[src]

impl FromGlibPtrNone<*const GValue> for Value
[src]

impl FromGlibPtrNone<*mut GValue> for Value
[src]

impl FromGlibPtrFull<*mut GValue> for Value
[src]

impl FromGlibContainerAsVec<*mut GValue, *mut *mut GValue> for Value
[src]

impl FromGlibPtrArrayContainerAsVec<*mut GValue, *mut *mut GValue> for Value
[src]

impl FromGlibContainerAsVec<*mut GValue, *const *mut GValue> for Value
[src]

impl FromGlibPtrArrayContainerAsVec<*mut GValue, *const *mut GValue> for Value
[src]

impl ToValue for Value
[src]

Returns a Value clone of self.

Returns the type identifer of self. Read more