pub struct ParamSpecArrayBuilder<'a> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<'a> Default for ParamSpecArrayBuilder<'a>
impl<'a> Default for ParamSpecArrayBuilder<'a>
Source§fn default() -> ParamSpecArrayBuilder<'a>
fn default() -> ParamSpecArrayBuilder<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> ParamSpecBuilderExt<'a> for ParamSpecArrayBuilder<'a>
impl<'a> ParamSpecBuilderExt<'a> for ParamSpecArrayBuilder<'a>
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::READWRITE
Source§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> Freeze for ParamSpecArrayBuilder<'a>
impl<'a> RefUnwindSafe for ParamSpecArrayBuilder<'a>
impl<'a> Send for ParamSpecArrayBuilder<'a>
impl<'a> Sync for ParamSpecArrayBuilder<'a>
impl<'a> Unpin for ParamSpecArrayBuilder<'a>
impl<'a> UnwindSafe for ParamSpecArrayBuilder<'a>
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
Source§impl<'a, T> GstParamSpecBuilderExt<'a> for Twhere
T: ParamSpecBuilderExt<'a>,
impl<'a, T> GstParamSpecBuilderExt<'a> for Twhere
T: ParamSpecBuilderExt<'a>,
Source§fn controllable(self) -> Self
fn controllable(self) -> Self
Mark the property as controllable
Source§fn mutable_ready(self) -> Self
fn mutable_ready(self) -> Self
Mark the property as mutable in ready state
Source§fn mutable_paused(self) -> Self
fn mutable_paused(self) -> Self
Mark the property as mutable in paused state
Source§fn mutable_playing(self) -> Self
fn mutable_playing(self) -> Self
Mark the property as mutable in playing state
Source§fn doc_show_default(self) -> Self
fn doc_show_default(self) -> Self
Mark the property for showing the default value in the docs
Source§fn conditionally_available(self) -> Self
fn conditionally_available(self) -> Self
Mark the property for being only conditionally available
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more