Struct glib::value::AnySendValue[][src]

pub struct AnySendValue(_);

A container type that allows storing any 'static type that implements Any, Clone and Send to be stored in a Value or SendValue.

See the module documentation for more details and the AnyValue for a code example.

Methods

impl AnySendValue
[src]

Create a new AnySendValue from val.

Attempt the value to its concrete type.

Methods from Deref<Target = AnyValue>

Trait Implementations

impl Clone for AnySendValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Send for AnySendValue
[src]

impl Debug for AnySendValue
[src]

Formats the value using the given formatter. Read more

impl Deref for AnySendValue
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<'a> FromValueOptional<'a> for &'a AnySendValue
[src]

impl SetValue for AnySendValue
[src]

impl StaticType for AnySendValue
[src]

Returns the type identifier of Self.

Auto Trait Implementations

impl !Sync for AnySendValue