pub struct ActivityInfoBoxed(pub ActivityInfo);

Tuple Fields§

§0: ActivityInfo

Trait Implementations§

source§

impl BoxedType for ActivityInfoBoxed

source§

const NAME: &'static str = _

Boxed type name. Read more
source§

impl Clone for ActivityInfoBoxed

source§

fn clone(&self) -> ActivityInfoBoxed

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ActivityInfoBoxed

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<ActivityInfoBoxed> for Value

source§

fn from(v: ActivityInfoBoxed) -> Self

Converts to this type from the input type.
source§

impl FromGlibPtrFull<*mut ActivityInfoBoxed> for ActivityInfoBoxed

source§

impl FromGlibPtrNone<*const ActivityInfoBoxed> for ActivityInfoBoxed

source§

impl FromGlibPtrNone<*mut ActivityInfoBoxed> for ActivityInfoBoxed

source§

impl<'a> FromValue<'a> for &'a ActivityInfoBoxed

§

type Checker = GenericValueTypeChecker<&'a ActivityInfoBoxed>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl<'a> FromValue<'a> for ActivityInfoBoxed

§

type Checker = GenericValueTypeChecker<ActivityInfoBoxed>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl HasParamSpec for ActivityInfoBoxed

§

type ParamSpec = ParamSpecBoxed

§

type SetValue = ActivityInfoBoxed

Preferred value to be used as setter for the associated ParamSpec.
§

type BuilderFn = fn(_: &str) -> ParamSpecBoxedBuilder<'_, ActivityInfoBoxed>

source§

fn param_spec_builder() -> Self::BuilderFn

source§

impl IntoGlibPtr<*mut ActivityInfoBoxed> for ActivityInfoBoxed

source§

unsafe fn into_glib_ptr(self) -> *mut ActivityInfoBoxed

Transfer: full.
source§

impl PartialEq<ActivityInfoBoxed> for ActivityInfoBoxed

source§

fn eq(&self, other: &ActivityInfoBoxed) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StaticType for ActivityInfoBoxed

source§

fn static_type() -> Type

Returns the type identifier of Self.
source§

impl<'a> ToGlibPtr<'a, *const ActivityInfoBoxed> for ActivityInfoBoxed

§

type Storage = PhantomData<&'a ActivityInfoBoxed>

source§

fn to_glib_none(&'a self) -> Stash<'a, *const ActivityInfoBoxed, Self>

Transfer: none. Read more
source§

fn to_glib_full(&self) -> *const ActivityInfoBoxed

Transfer: full. Read more
source§

fn to_glib_container(&'a self) -> Stash<'a, P, Self>

Transfer: container. Read more
source§

impl<'a> ToGlibPtr<'a, *mut ActivityInfoBoxed> for ActivityInfoBoxed

§

type Storage = PhantomData<&'a ActivityInfoBoxed>

source§

fn to_glib_none(&'a self) -> Stash<'a, *mut ActivityInfoBoxed, Self>

Transfer: none. Read more
source§

fn to_glib_full(&self) -> *mut ActivityInfoBoxed

Transfer: full. Read more
source§

fn to_glib_container(&'a self) -> Stash<'a, P, Self>

Transfer: container. Read more
source§

impl ToValue for ActivityInfoBoxed

source§

fn to_value(&self) -> Value

Convert a value to a Value.
source§

fn value_type(&self) -> Type

Returns the type identifer of self. Read more
source§

impl ValueType for ActivityInfoBoxed

§

type Type = ActivityInfoBoxed

Type to get the Type from. Read more
source§

impl Eq for ActivityInfoBoxed

source§

impl StructuralEq for ActivityInfoBoxed

source§

impl StructuralPartialEq for ActivityInfoBoxed

Auto Trait Implementations§

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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> IntoClosureReturnValue for Twhere T: Into<Value>,

source§

impl<T> IntoEither for T

source§

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

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,

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

impl<T> Property for Twhere T: HasParamSpec,

§

type Value = T

source§

impl<T> PropertyGet for Twhere T: HasParamSpec,

§

type Value = T

source§

fn get<R, F>(&self, f: F) -> Rwhere F: Fn(&<T as PropertyGet>::Value) -> R,

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> StaticTypeExt for Twhere T: StaticType,

source§

fn ensure_type()

Ensures that the type has been registered with the type system.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToSendValue for Twhere T: Send + ToValue + ?Sized,

source§

fn to_send_value(&self) -> SendValue

Returns a SendValue clone of self.
source§

impl<T, U> TryFrom<U> for Twhere 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> TryFromClosureReturnValue for Twhere T: for<'a> FromValue<'a> + StaticType + 'static,

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

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V