Struct glib_signal::ConnectDetails

source ·
pub struct ConnectDetails<S = ()> {
    pub run_after: bool,
    /* private fields */
}

Fields§

§run_after: bool

Implementations§

source§

impl<S> ConnectDetails<S>

source

pub unsafe fn with_parts( signal: SignalId, detail: Option<Quark>, run_after: bool ) -> Self

source

pub fn normalize(&self) -> ConnectDetails<()>

source

pub fn signal(&self) -> SignalId

source

pub fn detail(&self) -> Option<Quark>

source§

impl<S: DetailedSignal> ConnectDetails<S>

source

pub fn new() -> Self

source

pub fn with_after(run_after: bool) -> Self

source

pub fn set_detail(&mut self, detail: Quark)

source§

impl<S: Signal> ConnectDetails<S>

source

pub fn with_detail<D: Into<Option<Quark>>>(detail: D) -> Self

source§

impl ConnectDetails<()>

source

pub fn with_name<O: StaticType>(signal: &str, after: bool) -> Option<Self>

Trait Implementations§

source§

impl<S: Clone> Clone for ConnectDetails<S>

source§

fn clone(&self) -> ConnectDetails<S>

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<S: Debug> Debug for ConnectDetails<S>

source§

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

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

impl<S: DetailedSignal> From<ConnectDetails<S>> for ConnectDetails<()>

source§

fn from(v: ConnectDetails<S>) -> Self

Converts to this type from the input type.
source§

impl<S: DetailedSignal> From<S> for ConnectDetails<S>

source§

fn from(_: S) -> Self

Converts to this type from the input type.
source§

impl<S: Copy> Copy for ConnectDetails<S>

Auto Trait Implementations§

§

impl<S> Freeze for ConnectDetails<S>

§

impl<S> RefUnwindSafe for ConnectDetails<S>
where S: RefUnwindSafe,

§

impl<S> Send for ConnectDetails<S>
where S: Send,

§

impl<S> Sync for ConnectDetails<S>
where S: Sync,

§

impl<S> Unpin for ConnectDetails<S>
where S: Unpin,

§

impl<S> UnwindSafe for ConnectDetails<S>
where S: UnwindSafe,

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> ToOwned for T
where 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, 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.