pub struct FlagsBuilder<'a>(_, _);
Expand description

Builder for conveniently setting/unsetting flags and returning a Value.

Example for getting a flags property, unsetting some flags and setting the updated flags on the object again:

let flags = obj.property("flags").unwrap();
let flags_class = FlagsClass::new(flags.type_()).unwrap();
let flags = flags_class.builder_with_value(flags).unwrap()
    .unset_by_nick("some-flag")
    .unset_by_nick("some-other-flag")
    .build()
    .unwrap();
obj.set_property("flags", &flags).unwrap();

If setting/unsetting any value fails, build() returns None.

Implementations

Set flags corresponding to integer value f.

Set flags corresponding to string name name.

Set flags corresponding to string nick nick.

Unsets flags corresponding to integer value f.

Unset flags corresponding to string name name.

Unset flags corresponding to string nick nick.

Converts to the final Value, unless any previous setting/unsetting of flags failed.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.