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

#[repr(transparent)]
pub struct Value(_);
Expand description

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.

Implementations

Creates a new Value that is initialized with type_

Creates a new Value that is initialized for a given ValueType.

Tries to get a value of type T.

Returns Ok if the type is correct.

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.

Tries to transform the value into a value of the target type

Consumes Value and returns the corresponding GValue.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Performs the conversion.

Performs the conversion.

Safety Read more

Safety Read more

Safety Read more

Returns an uninitialized value.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.