Struct gio::DBusMessage
source · pub struct DBusMessage { /* private fields */ }
Expand description
A type for representing D-Bus messages that can be sent or received
on a DBusConnection
.
Properties
locked
Readable
Implements
Implementations§
source§impl DBusMessage
impl DBusMessage
sourcepub fn new() -> DBusMessage
pub fn new() -> DBusMessage
sourcepub fn from_blob(
blob: &[u8],
capabilities: DBusCapabilityFlags
) -> Result<DBusMessage, Error>
pub fn from_blob( blob: &[u8], capabilities: DBusCapabilityFlags ) -> Result<DBusMessage, Error>
Creates a new DBusMessage
from the data stored at blob
. The byte
order that the message was in can be retrieved using
byte_order()
.
If the blob
cannot be parsed, contains invalid fields, or contains invalid
headers, IOErrorEnum::InvalidArgument
will be returned.
blob
A blob representing a binary D-Bus message.
capabilities
A DBusCapabilityFlags
describing what protocol features are supported.
Returns
A new DBusMessage
or None
if error
is set. Free with
g_object_unref()
.
sourcepub fn new_method_call(
name: Option<&str>,
path: &str,
interface_: Option<&str>,
method: &str
) -> DBusMessage
pub fn new_method_call( name: Option<&str>, path: &str, interface_: Option<&str>, method: &str ) -> DBusMessage
Creates a new DBusMessage
for a method call.
name
A valid D-Bus name or None
.
path
A valid object path.
interface_
A valid D-Bus interface name or None
.
method
A valid method name.
Returns
A DBusMessage
. Free with g_object_unref()
.
sourcepub fn new_signal(path: &str, interface_: &str, signal: &str) -> DBusMessage
pub fn new_signal(path: &str, interface_: &str, signal: &str) -> DBusMessage
Creates a new DBusMessage
for a signal emission.
path
A valid object path.
interface_
A valid D-Bus interface name.
signal
A valid signal name.
Returns
A DBusMessage
. Free with g_object_unref()
.
pub fn copy(&self) -> Result<DBusMessage, Error>
sourcepub fn body(&self) -> Option<Variant>
pub fn body(&self) -> Option<Variant>
Gets the body of a message.
Returns
A glib::Variant
or None
if the body is
empty. Do not free, it is owned by self
.
sourcepub fn byte_order(&self) -> DBusMessageByteOrder
pub fn byte_order(&self) -> DBusMessageByteOrder
sourcepub fn destination(&self) -> Option<GString>
pub fn destination(&self) -> Option<GString>
sourcepub fn error_name(&self) -> Option<GString>
pub fn error_name(&self) -> Option<GString>
sourcepub fn flags(&self) -> DBusMessageFlags
pub fn flags(&self) -> DBusMessageFlags
Gets the flags for self
.
Returns
Flags that are set (typically values from the DBusMessageFlags
enumeration bitwise ORed together).
sourcepub fn header(&self, header_field: DBusMessageHeaderField) -> Option<Variant>
pub fn header(&self, header_field: DBusMessageHeaderField) -> Option<Variant>
Gets a header field on self
.
The caller is responsible for checking the type of the returned glib::Variant
matches what is expected.
header_field
A 8-bit unsigned integer (typically a value from the DBusMessageHeaderField
enumeration)
Returns
A glib::Variant
with the value if the header was found, None
otherwise. Do not free, it is owned by self
.
sourcepub fn message_type(&self) -> DBusMessageType
pub fn message_type(&self) -> DBusMessageType
Gets the type of self
.
Returns
A 8-bit unsigned integer (typically a value from the DBusMessageType
enumeration).
sourcepub fn num_unix_fds(&self) -> u32
Available on Unix only.
pub fn num_unix_fds(&self) -> u32
sourcepub fn reply_serial(&self) -> u32
pub fn reply_serial(&self) -> u32
sourcepub fn signature(&self) -> GString
pub fn signature(&self) -> GString
Convenience getter for the DBusMessageHeaderField::Signature
header field.
This will always be non-None
, but may be an empty string.
Returns
The value.
sourcepub fn unix_fd_list(&self) -> Option<UnixFDList>
Available on Unix only.
pub fn unix_fd_list(&self) -> Option<UnixFDList>
Gets the UNIX file descriptors associated with self
, if any.
This method is only available on UNIX.
The file descriptors normally correspond to G_VARIANT_TYPE_HANDLE
values in the body of the message. For example,
if [glib::Variant::handle()
][crate::glib::Variant::handle()] returns 5, that is intended to be a reference
to the file descriptor that can be accessed by
g_unix_fd_list_get (list, 5, ...)
.
Returns
A UnixFDList
or None
if no file descriptors are
associated. Do not free, this object is owned by self
.
sourcepub fn new_method_error_literal(
&self,
error_name: &str,
error_message: &str
) -> DBusMessage
pub fn new_method_error_literal( &self, error_name: &str, error_message: &str ) -> DBusMessage
Creates a new DBusMessage
that is an error reply to self
.
error_name
A valid D-Bus error name.
error_message
The D-Bus error message.
Returns
A DBusMessage
. Free with g_object_unref()
.
sourcepub fn new_method_reply(&self) -> DBusMessage
pub fn new_method_reply(&self) -> DBusMessage
sourcepub fn print(&self, indent: u32) -> GString
pub fn print(&self, indent: u32) -> GString
Produces a human-readable multi-line description of self
.
The contents of the description has no ABI guarantees, the contents and formatting is subject to change at any time. Typical output looks something like this:
Flags: none
Version: 0
Serial: 4
Headers:
path -> objectpath '/org/gtk/GDBus/TestObject'
interface -> 'org.gtk.GDBus.TestInterface'
member -> 'GimmeStdout'
destination -> ':1.146'
Body: ()
UNIX File Descriptors:
(none)
or
Flags: no-reply-expected
Version: 0
Serial: 477
Headers:
reply-serial -> uint32 4
destination -> ':1.159'
sender -> ':1.146'
num-unix-fds -> uint32 1
Body: ()
UNIX File Descriptors:
fd 12: dev=0:10,mode=020620,ino=5,uid=500,gid=5,rdev=136:2,size=0,atime=1273085037,mtime=1273085851,ctime=1272982635
indent
Indentation level.
Returns
A string that should be freed with g_free()
.
sourcepub fn set_body(&self, body: &Variant)
pub fn set_body(&self, body: &Variant)
Sets the body self
. As a side-effect the
DBusMessageHeaderField::Signature
header field is set to the
type string of body
(or cleared if body
is None
).
If body
is floating, self
assumes ownership of body
.
body
Either None
or a glib::Variant
that is a tuple.
sourcepub fn set_byte_order(&self, byte_order: DBusMessageByteOrder)
pub fn set_byte_order(&self, byte_order: DBusMessageByteOrder)
sourcepub fn set_destination(&self, value: Option<&str>)
pub fn set_destination(&self, value: Option<&str>)
Convenience setter for the DBusMessageHeaderField::Destination
header field.
value
The value to set.
sourcepub fn set_error_name(&self, value: &str)
pub fn set_error_name(&self, value: &str)
sourcepub fn set_flags(&self, flags: DBusMessageFlags)
pub fn set_flags(&self, flags: DBusMessageFlags)
Sets the flags to set on self
.
flags
Flags for self
that are set (typically values from the DBusMessageFlags
enumeration bitwise ORed together).
sourcepub fn set_header(
&self,
header_field: DBusMessageHeaderField,
value: Option<&Variant>
)
pub fn set_header( &self, header_field: DBusMessageHeaderField, value: Option<&Variant> )
Sets a header field on self
.
If value
is floating, self
assumes ownership of value
.
header_field
A 8-bit unsigned integer (typically a value from the DBusMessageHeaderField
enumeration)
value
A glib::Variant
to set the header field or None
to clear the header field.
sourcepub fn set_interface(&self, value: Option<&str>)
pub fn set_interface(&self, value: Option<&str>)
sourcepub fn set_member(&self, value: Option<&str>)
pub fn set_member(&self, value: Option<&str>)
sourcepub fn set_message_type(&self, type_: DBusMessageType)
pub fn set_message_type(&self, type_: DBusMessageType)
Sets self
to be of type_
.
type_
A 8-bit unsigned integer (typically a value from the DBusMessageType
enumeration).
sourcepub fn set_num_unix_fds(&self, value: u32)
Available on Unix only.
pub fn set_num_unix_fds(&self, value: u32)
sourcepub fn set_reply_serial(&self, value: u32)
pub fn set_reply_serial(&self, value: u32)
Convenience setter for the DBusMessageHeaderField::ReplySerial
header field.
value
The value to set.
sourcepub fn set_sender(&self, value: Option<&str>)
pub fn set_sender(&self, value: Option<&str>)
sourcepub fn set_serial(&self, serial: u32)
pub fn set_serial(&self, serial: u32)
sourcepub fn set_signature(&self, value: Option<&str>)
pub fn set_signature(&self, value: Option<&str>)
sourcepub fn set_unix_fd_list(&self, fd_list: Option<&impl IsA<UnixFDList>>)
Available on Unix only.
pub fn set_unix_fd_list(&self, fd_list: Option<&impl IsA<UnixFDList>>)
Sets the UNIX file descriptors associated with self
. As a
side-effect the DBusMessageHeaderField::NumUnixFds
header
field is set to the number of fds in fd_list
(or cleared if
fd_list
is None
).
This method is only available on UNIX.
When designing D-Bus APIs that are intended to be interoperable,
please note that non-GDBus implementations of D-Bus can usually only
access file descriptors if they are referenced by a value of type
G_VARIANT_TYPE_HANDLE
in the body of the message.
fd_list
A UnixFDList
or None
.
sourcepub fn to_blob(
&self,
capabilities: DBusCapabilityFlags
) -> Result<Vec<u8>, Error>
pub fn to_blob( &self, capabilities: DBusCapabilityFlags ) -> Result<Vec<u8>, Error>
Serializes self
to a blob. The byte order returned by
byte_order()
will be used.
capabilities
A DBusCapabilityFlags
describing what protocol features are supported.
Returns
A pointer to a
valid binary D-Bus message of out_size
bytes generated by self
or None
if error
is set. Free with g_free()
.
sourcepub fn to_gerror(&self) -> Result<(), Error>
pub fn to_gerror(&self) -> Result<(), Error>
If self
is not of type DBusMessageType::Error
does
nothing and returns false
.
Otherwise this method encodes the error in self
as a glib::Error
using g_dbus_error_set_dbus_error()
using the information in the
DBusMessageHeaderField::ErrorName
header field of self
as
well as the first string item in self
’s body.
Returns
sourcepub fn bytes_needed(blob: &[u8]) -> Result<isize, Error>
pub fn bytes_needed(blob: &[u8]) -> Result<isize, Error>
Utility function to calculate how many bytes are needed to
completely deserialize the D-Bus message stored at blob
.
blob
A blob representing a binary D-Bus message.
Returns
Number of bytes needed or -1 if error
is set (e.g. if
blob
contains invalid data or not enough data is available to
determine the size).
pub fn connect_locked_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
Trait Implementations§
source§impl Clone for DBusMessage
impl Clone for DBusMessage
source§impl Debug for DBusMessage
impl Debug for DBusMessage
source§impl Default for DBusMessage
impl Default for DBusMessage
source§impl Display for DBusMessage
impl Display for DBusMessage
source§impl HasParamSpec for DBusMessage
impl HasParamSpec for DBusMessage
type ParamSpec = ParamSpecObject
§type SetValue = DBusMessage
type SetValue = DBusMessage
type BuilderFn = fn(_: &str) -> ParamSpecObjectBuilder<'_, DBusMessage>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for DBusMessage
impl Hash for DBusMessage
source§impl Ord for DBusMessage
impl Ord for DBusMessage
source§impl ParentClassIs for DBusMessage
impl ParentClassIs for DBusMessage
source§impl<OT: ObjectType> PartialEq<OT> for DBusMessage
impl<OT: ObjectType> PartialEq<OT> for DBusMessage
source§impl<OT: ObjectType> PartialOrd<OT> for DBusMessage
impl<OT: ObjectType> PartialOrd<OT> for DBusMessage
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl StaticType for DBusMessage
impl StaticType for DBusMessage
source§fn static_type() -> Type
fn static_type() -> Type
Self
.impl Eq for DBusMessage
Auto Trait Implementations§
impl RefUnwindSafe for DBusMessage
impl !Send for DBusMessage
impl !Sync for DBusMessage
impl Unpin for DBusMessage
impl UnwindSafe for DBusMessage
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
source§impl<T> Cast for Twhere
T: ObjectType,
impl<T> Cast for Twhere
T: ObjectType,
source§fn upcast<T>(self) -> Twhere
T: ObjectType,
Self: IsA<T>,
fn upcast<T>(self) -> Twhere
T: ObjectType,
Self: IsA<T>,
T
. Read moresource§fn upcast_ref<T>(&self) -> &Twhere
T: ObjectType,
Self: IsA<T>,
fn upcast_ref<T>(&self) -> &Twhere
T: ObjectType,
Self: IsA<T>,
T
. Read moresource§fn downcast<T>(self) -> Result<T, Self>where
T: ObjectType,
Self: MayDowncastTo<T>,
fn downcast<T>(self) -> Result<T, Self>where
T: ObjectType,
Self: MayDowncastTo<T>,
T
. Read moresource§fn downcast_ref<T>(&self) -> Option<&T>where
T: ObjectType,
Self: MayDowncastTo<T>,
fn downcast_ref<T>(&self) -> Option<&T>where
T: ObjectType,
Self: MayDowncastTo<T>,
T
. Read moresource§fn dynamic_cast<T>(self) -> Result<T, Self>where
T: ObjectType,
fn dynamic_cast<T>(self) -> Result<T, Self>where
T: ObjectType,
T
. This handles upcasting, downcasting
and casting between interface and interface implementors. All checks are performed at
runtime, while upcast
will do many checks at compile-time already. downcast
will
perform the same checks at runtime as dynamic_cast
, but will also ensure some amount of
compile-time safety. Read moresource§fn dynamic_cast_ref<T>(&self) -> Option<&T>where
T: ObjectType,
fn dynamic_cast_ref<T>(&self) -> Option<&T>where
T: ObjectType,
T
. This handles upcasting, downcasting
and casting between interface and interface implementors. All checks are performed at
runtime, while downcast
and upcast
will do many checks at compile-time already. Read moresource§unsafe fn unsafe_cast<T>(self) -> Twhere
T: ObjectType,
unsafe fn unsafe_cast<T>(self) -> Twhere
T: ObjectType,
T
unconditionally. Read moresource§unsafe fn unsafe_cast_ref<T>(&self) -> &Twhere
T: ObjectType,
unsafe fn unsafe_cast_ref<T>(&self) -> &Twhere
T: ObjectType,
&T
unconditionally. Read moresource§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<U> IsSubclassableExt for Uwhere
U: IsClass + ParentClassIs,
impl<U> IsSubclassableExt for Uwhere
U: IsClass + ParentClassIs,
fn parent_class_init<T>(class: &mut Class<U>)
fn parent_instance_init<T>(instance: &mut InitializingObject<T>)
source§impl<T> ObjectExt for Twhere
T: ObjectType,
impl<T> ObjectExt for Twhere
T: ObjectType,
source§fn is<U>(&self) -> boolwhere
U: StaticType,
fn is<U>(&self) -> boolwhere
U: StaticType,
true
if the object is an instance of (can be cast to) T
.source§fn object_class(&self) -> &Class<Object>
fn object_class(&self) -> &Class<Object>
ObjectClass
of the object. Read moresource§fn class_of<U>(&self) -> Option<&Class<U>>where
U: IsClass,
fn class_of<U>(&self) -> Option<&Class<U>>where
U: IsClass,
T
. Read moresource§fn interface<U>(&self) -> Option<InterfaceRef<'_, U>>where
U: IsInterface,
fn interface<U>(&self) -> Option<InterfaceRef<'_, U>>where
U: IsInterface,
T
of the object. Read moresource§fn set_property_from_value(&self, property_name: &str, value: &Value)
fn set_property_from_value(&self, property_name: &str, value: &Value)
source§fn set_properties(&self, property_values: &[(&str, &dyn ToValue)])
fn set_properties(&self, property_values: &[(&str, &dyn ToValue)])
source§fn set_properties_from_value(&self, property_values: &[(&str, Value)])
fn set_properties_from_value(&self, property_values: &[(&str, Value)])
source§fn property<V>(&self, property_name: &str) -> Vwhere
V: for<'b> FromValue<'b> + 'static,
fn property<V>(&self, property_name: &str) -> Vwhere
V: for<'b> FromValue<'b> + 'static,
property_name
of the object and cast it to the type V. Read moresource§fn property_value(&self, property_name: &str) -> Value
fn property_value(&self, property_name: &str) -> Value
property_name
of the object. Read moresource§fn property_type(&self, property_name: &str) -> Option<Type>
fn property_type(&self, property_name: &str) -> Option<Type>
property_name
of this object. Read moresource§fn find_property(&self, property_name: &str) -> Option<ParamSpec>
fn find_property(&self, property_name: &str) -> Option<ParamSpec>
ParamSpec
of the property property_name
of this object.source§fn list_properties(&self) -> PtrSlice<ParamSpec>
fn list_properties(&self) -> PtrSlice<ParamSpec>
ParamSpec
of the properties of this object.source§fn freeze_notify(&self) -> PropertyNotificationFreezeGuard
fn freeze_notify(&self) -> PropertyNotificationFreezeGuard
source§unsafe fn set_qdata<QD>(&self, key: Quark, value: QD)where
QD: 'static,
unsafe fn set_qdata<QD>(&self, key: Quark, value: QD)where
QD: 'static,
key
. Read moresource§unsafe fn qdata<QD>(&self, key: Quark) -> Option<NonNull<QD>>where
QD: 'static,
unsafe fn qdata<QD>(&self, key: Quark) -> Option<NonNull<QD>>where
QD: 'static,
key
. Read moresource§unsafe fn steal_qdata<QD>(&self, key: Quark) -> Option<QD>where
QD: 'static,
unsafe fn steal_qdata<QD>(&self, key: Quark) -> Option<QD>where
QD: 'static,
key
. Read moresource§unsafe fn set_data<QD>(&self, key: &str, value: QD)where
QD: 'static,
unsafe fn set_data<QD>(&self, key: &str, value: QD)where
QD: 'static,
key
. Read moresource§unsafe fn data<QD>(&self, key: &str) -> Option<NonNull<QD>>where
QD: 'static,
unsafe fn data<QD>(&self, key: &str) -> Option<NonNull<QD>>where
QD: 'static,
key
. Read moresource§unsafe fn steal_data<QD>(&self, key: &str) -> Option<QD>where
QD: 'static,
unsafe fn steal_data<QD>(&self, key: &str) -> Option<QD>where
QD: 'static,
key
. Read moresource§fn block_signal(&self, handler_id: &SignalHandlerId)
fn block_signal(&self, handler_id: &SignalHandlerId)
source§fn unblock_signal(&self, handler_id: &SignalHandlerId)
fn unblock_signal(&self, handler_id: &SignalHandlerId)
source§fn stop_signal_emission(&self, signal_id: SignalId, detail: Option<Quark>)
fn stop_signal_emission(&self, signal_id: SignalId, detail: Option<Quark>)
source§fn stop_signal_emission_by_name(&self, signal_name: &str)
fn stop_signal_emission_by_name(&self, signal_name: &str)
source§fn connect<F>(
&self,
signal_name: &str,
after: bool,
callback: F
) -> SignalHandlerId
fn connect<F>( &self, signal_name: &str, after: bool, callback: F ) -> SignalHandlerId
signal_name
on this object. Read moresource§fn connect_id<F>(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> SignalHandlerId
fn connect_id<F>( &self, signal_id: SignalId, details: Option<Quark>, after: bool, callback: F ) -> SignalHandlerId
signal_id
on this object. Read moresource§fn connect_local<F>(
&self,
signal_name: &str,
after: bool,
callback: F
) -> SignalHandlerId
fn connect_local<F>( &self, signal_name: &str, after: bool, callback: F ) -> SignalHandlerId
signal_name
on this object. Read moresource§fn connect_local_id<F>(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> SignalHandlerId
fn connect_local_id<F>( &self, signal_id: SignalId, details: Option<Quark>, after: bool, callback: F ) -> SignalHandlerId
signal_id
on this object. Read moresource§unsafe fn connect_unsafe<F>(
&self,
signal_name: &str,
after: bool,
callback: F
) -> SignalHandlerId
unsafe fn connect_unsafe<F>( &self, signal_name: &str, after: bool, callback: F ) -> SignalHandlerId
signal_name
on this object. Read moresource§unsafe fn connect_unsafe_id<F>(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> SignalHandlerId
unsafe fn connect_unsafe_id<F>( &self, signal_id: SignalId, details: Option<Quark>, after: bool, callback: F ) -> SignalHandlerId
signal_id
on this object. Read moresource§fn connect_closure(
&self,
signal_name: &str,
after: bool,
closure: RustClosure
) -> SignalHandlerId
fn connect_closure( &self, signal_name: &str, after: bool, closure: RustClosure ) -> SignalHandlerId
signal_name
on this object. Read moresource§fn connect_closure_id(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
closure: RustClosure
) -> SignalHandlerId
fn connect_closure_id( &self, signal_id: SignalId, details: Option<Quark>, after: bool, closure: RustClosure ) -> SignalHandlerId
signal_id
on this object. Read moresource§fn watch_closure(&self, closure: &impl AsRef<Closure>)
fn watch_closure(&self, closure: &impl AsRef<Closure>)
closure
to the lifetime of the object. When
the object’s reference count drops to zero, the closure will be
invalidated. An invalidated closure will ignore any calls to
invoke_with_values
, or
invoke
when using Rust closures.source§fn emit<R>(&self, signal_id: SignalId, args: &[&dyn ToValue]) -> Rwhere
R: TryFromClosureReturnValue,
fn emit<R>(&self, signal_id: SignalId, args: &[&dyn ToValue]) -> Rwhere
R: TryFromClosureReturnValue,
source§fn emit_with_values(&self, signal_id: SignalId, args: &[Value]) -> Option<Value>
fn emit_with_values(&self, signal_id: SignalId, args: &[Value]) -> Option<Value>
Self::emit
but takes Value
for the arguments.source§fn emit_by_name<R>(&self, signal_name: &str, args: &[&dyn ToValue]) -> Rwhere
R: TryFromClosureReturnValue,
fn emit_by_name<R>(&self, signal_name: &str, args: &[&dyn ToValue]) -> Rwhere
R: TryFromClosureReturnValue,
source§fn emit_by_name_with_values(
&self,
signal_name: &str,
args: &[Value]
) -> Option<Value>
fn emit_by_name_with_values( &self, signal_name: &str, args: &[Value] ) -> Option<Value>
source§fn emit_by_name_with_details<R>(
&self,
signal_name: &str,
details: Quark,
args: &[&dyn ToValue]
) -> Rwhere
R: TryFromClosureReturnValue,
fn emit_by_name_with_details<R>(
&self,
signal_name: &str,
details: Quark,
args: &[&dyn ToValue]
) -> Rwhere
R: TryFromClosureReturnValue,
source§fn emit_by_name_with_details_and_values(
&self,
signal_name: &str,
details: Quark,
args: &[Value]
) -> Option<Value>
fn emit_by_name_with_details_and_values( &self, signal_name: &str, details: Quark, args: &[Value] ) -> Option<Value>
source§fn emit_with_details<R>(
&self,
signal_id: SignalId,
details: Quark,
args: &[&dyn ToValue]
) -> Rwhere
R: TryFromClosureReturnValue,
fn emit_with_details<R>(
&self,
signal_id: SignalId,
details: Quark,
args: &[&dyn ToValue]
) -> Rwhere
R: TryFromClosureReturnValue,
source§fn emit_with_details_and_values(
&self,
signal_id: SignalId,
details: Quark,
args: &[Value]
) -> Option<Value>
fn emit_with_details_and_values( &self, signal_id: SignalId, details: Quark, args: &[Value] ) -> Option<Value>
source§fn disconnect(&self, handler_id: SignalHandlerId)
fn disconnect(&self, handler_id: SignalHandlerId)
source§fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId
fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId
notify
signal of the object. Read moresource§fn connect_notify_local<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId
fn connect_notify_local<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId
notify
signal of the object. Read moresource§unsafe fn connect_notify_unsafe<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId
unsafe fn connect_notify_unsafe<F>( &self, name: Option<&str>, f: F ) -> SignalHandlerId
notify
signal of the object. Read more