Struct glib::FlagsBuilder

source ·
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§

source§

impl<'a> FlagsBuilder<'a>

source

pub fn set(self, f: u32) -> Self

Set flags corresponding to integer value f.

source

pub fn set_by_name(self, name: &str) -> Self

Set flags corresponding to string name name.

source

pub fn set_by_nick(self, nick: &str) -> Self

Set flags corresponding to string nick nick.

source

pub fn unset(self, f: u32) -> Self

Unsets flags corresponding to integer value f.

source

pub fn unset_by_name(self, name: &str) -> Self

Unset flags corresponding to string name name.

source

pub fn unset_by_nick(self, nick: &str) -> Self

Unset flags corresponding to string nick nick.

source

pub fn build(self) -> Option<Value>

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

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for FlagsBuilder<'a>

§

impl<'a> !Send for FlagsBuilder<'a>

§

impl<'a> !Sync for FlagsBuilder<'a>

§

impl<'a> Unpin for FlagsBuilder<'a>

§

impl<'a> UnwindSafe for FlagsBuilder<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.