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

#[repr(C)]
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.

Value does not implement the Send trait, but SendValue can be used instead.

See the module documentation for more details.

Methods

impl Value
[src]

Creates a new Value that is initialized with type_

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 downcast to a &TypedValue.

Returns Some(&TypedValue<T>) if the value carries a type corresponding to T and None 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 or is a sub-type of 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]

Executes the destructor for this type. Read more

impl Debug for Value
[src]

Formats the value using the given formatter. Read more

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 From<SendValue> 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]

Important traits for Vec<u8>

Important traits for Vec<u8>

Important traits for Vec<u8>

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

Important traits for Vec<u8>

Important traits for Vec<u8>

Important traits for Vec<u8>

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

Important traits for Vec<u8>

Important traits for Vec<u8>

Important traits for Vec<u8>

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

Important traits for Vec<u8>

Important traits for Vec<u8>

Important traits for Vec<u8>

impl ToValue for Value
[src]

Returns a Value clone of self.

Returns the type identifer of self. Read more

Auto Trait Implementations

impl !Send for Value

impl !Sync for Value