logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::DBus::Binding::Value - Strongly typed data value

Author

Daniel P. Berrange

Description

This module provides a simple wrapper around a raw Perl value, associating an explicit DBus type with the value. This is used in cases where a client is communicating with a server which does not provide introspection data, but for which the basic data types are not sufficient. This class should not be used directly, rather the convenience functions in Net::DBus be called.

Methods

my $value = Net::DBus::Binding::Value->new($type, $value); Creates a wrapper for the perl value $value marking it as having the dbus data type $type. It is not necessary to call this method directly, instead the data typing methods in the Net::DBus object should be used. my $raw = $value->value Returns the raw perl value wrapped by this object my $type = $value->type Returns the dbus data type this value is marked as having

Name

Net::DBus::Binding::Value - Strongly typed data value

See Also

Net::DBus, Net::DBus::Binding::Introspector, Net::DBus::Binding::Iterator perl v5.40.0 2024-10-20 Net::DBus::Binding::Value(3pm)

Synopsis

# Import the convenience functions use Net::DBus qw(:typing); # Call a method with passing an int32 $object->doit(dint32("3"));

See Also