pub struct ParamSpecObjectBuilder<'a, T: StaticType> { /* private fields */ }Implementations§
Source§impl<'a, T: StaticType> ParamSpecObjectBuilder<'a, T>
 
impl<'a, T: StaticType> ParamSpecObjectBuilder<'a, T>
Trait Implementations§
Source§impl<'a, T: StaticType> ParamSpecBuilderExt<'a> for ParamSpecObjectBuilder<'a, T>
 
impl<'a, T: StaticType> ParamSpecBuilderExt<'a> for ParamSpecObjectBuilder<'a, T>
Source§fn set_flags(&mut self, flags: ParamFlags)
 
fn set_flags(&mut self, flags: ParamFlags)
Implementation detail.
Source§fn current_flags(&self) -> ParamFlags
 
fn current_flags(&self) -> ParamFlags
Implementation detail.
Source§fn nick(self, nick: &'a str) -> Self
 
fn nick(self, nick: &'a str) -> Self
By default, the nickname of its redirect target will be used if it has one.
Otherwise, 
self.name will be used.Source§fn flags(self, flags: ParamFlags) -> Self
 
fn flags(self, flags: ParamFlags) -> Self
Default: 
glib::ParamFlags::READWRITESource§fn read_only(self) -> Self
 
fn read_only(self) -> Self
Mark the property as read only and drops the READWRITE flag set by default.
Source§fn write_only(self) -> Self
 
fn write_only(self) -> Self
Mark the property as write only and drops the READWRITE flag set by default.
Source§fn construct_only(self) -> Self
 
fn construct_only(self) -> Self
Mark the property as construct only
Source§fn lax_validation(self) -> Self
 
fn lax_validation(self) -> Self
Mark the property as lax validation
Source§fn explicit_notify(self) -> Self
 
fn explicit_notify(self) -> Self
Mark the property as explicit notify
Source§fn deprecated(self) -> Self
 
fn deprecated(self) -> Self
Mark the property as deprecated
Auto Trait Implementations§
impl<'a, T> Freeze for ParamSpecObjectBuilder<'a, T>
impl<'a, T> RefUnwindSafe for ParamSpecObjectBuilder<'a, T>where
    T: RefUnwindSafe,
impl<'a, T> Send for ParamSpecObjectBuilder<'a, T>where
    T: Send,
impl<'a, T> Sync for ParamSpecObjectBuilder<'a, T>where
    T: Sync,
impl<'a, T> Unpin for ParamSpecObjectBuilder<'a, T>where
    T: Unpin,
impl<'a, T> UnwindSafe for ParamSpecObjectBuilder<'a, T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more