libayatana_appindicator

Struct _AppIndicatorClass

Source
#[repr(C)]
pub struct _AppIndicatorClass {
Show 17 fields pub parent_class: GObjectClass, pub new_icon: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, user_data: gpointer)>, pub new_attention_icon: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, user_data: gpointer)>, pub new_status: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, status: *const gchar, user_data: gpointer)>, pub new_icon_theme_path: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, icon_theme_path: *const gchar, user_data: gpointer)>, pub new_label: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, label: *const gchar, guide: *const gchar, user_data: gpointer)>, pub connection_changed: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, connected: gboolean, user_data: gpointer)>, pub scroll_event: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, delta: gint, direction: GdkScrollDirection, user_data: gpointer)>, pub app_indicator_reserved_ats: Option<unsafe extern "C" fn()>, pub fallback: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator) -> *mut GtkStatusIcon>, pub unfallback: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, status_icon: *mut GtkStatusIcon)>, pub app_indicator_reserved_1: Option<unsafe extern "C" fn()>, pub app_indicator_reserved_2: Option<unsafe extern "C" fn()>, pub app_indicator_reserved_3: Option<unsafe extern "C" fn()>, pub app_indicator_reserved_4: Option<unsafe extern "C" fn()>, pub app_indicator_reserved_5: Option<unsafe extern "C" fn()>, pub app_indicator_reserved_6: Option<unsafe extern "C" fn()>,
}

Fields§

§parent_class: GObjectClass§new_icon: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, user_data: gpointer)>§new_attention_icon: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, user_data: gpointer)>§new_status: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, status: *const gchar, user_data: gpointer)>§new_icon_theme_path: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, icon_theme_path: *const gchar, user_data: gpointer)>§new_label: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, label: *const gchar, guide: *const gchar, user_data: gpointer)>§connection_changed: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, connected: gboolean, user_data: gpointer)>§scroll_event: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, delta: gint, direction: GdkScrollDirection, user_data: gpointer)>§app_indicator_reserved_ats: Option<unsafe extern "C" fn()>§fallback: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator) -> *mut GtkStatusIcon>§unfallback: Option<unsafe extern "C" fn(indicator: *mut _AppIndicator, status_icon: *mut GtkStatusIcon)>§app_indicator_reserved_1: Option<unsafe extern "C" fn()>§app_indicator_reserved_2: Option<unsafe extern "C" fn()>§app_indicator_reserved_3: Option<unsafe extern "C" fn()>§app_indicator_reserved_4: Option<unsafe extern "C" fn()>§app_indicator_reserved_5: Option<unsafe extern "C" fn()>§app_indicator_reserved_6: Option<unsafe extern "C" fn()>

Trait Implementations§

Source§

impl Clone for _AppIndicatorClass

Source§

fn clone(&self) -> _AppIndicatorClass

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 _AppIndicatorClass

Source§

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

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

impl Copy for _AppIndicatorClass

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

Source§

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

Source§

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>,

Source§

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.