Struct gio::BindingBuilder

source ·
pub struct BindingBuilder<'a> { /* private fields */ }

Implementations§

source§

impl<'a> BindingBuilder<'a>

source

pub fn flags(self, flags: SettingsBindFlags) -> Self

source

pub fn get(self) -> Self

Set the binding flags to GET.

source

pub fn set(self) -> Self

Set the binding flags to SET.

source

pub fn set_only(self) -> Self

Unsets the default GET flag.

source

pub fn get_only(self) -> Self

Unsets the default SET flag.

source

pub fn no_sensitivity(self) -> Self

Set the binding flags to NO_SENSITIVITY.

source

pub fn get_no_changes(self) -> Self

Set the binding flags to GET_NO_CHANGES.

source

pub fn invert_boolean(self) -> Self

Set the binding flags to INVERT_BOOLEAN.

source

pub fn mapping<F: Fn(&Variant, Type) -> Option<Value> + 'static>( self, f: F ) -> Self

source

pub fn set_mapping<F: Fn(&Value, VariantType) -> Option<Variant> + 'static>( self, f: F ) -> Self

source

pub fn build(self)

Auto Trait Implementations§

§

impl<'a> Freeze for BindingBuilder<'a>

§

impl<'a> !RefUnwindSafe for BindingBuilder<'a>

§

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

§

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

§

impl<'a> Unpin for BindingBuilder<'a>

§

impl<'a> !UnwindSafe for BindingBuilder<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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 T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.