Coder Social home page Coder Social logo

Comments (3)

diwic avatar diwic commented on June 28, 2024

First, here's some code which is the bottom half of your first example, modified:

    let test: dbus::arg::Dict<&str, dbus::arg::Dict<&str, dbus::arg::Variant<dbus::arg::Iter>, _>, _> =
	response.get1().unwrap();

    for (k1, v1) in test {
	println!("outer key = {:?}", k1);
	for (k2, v2) in v1 {
	    println!("    inner key = {:?}, inner type = {:?}, string value = {:?}", k2, v2, v2.0.clone().get::<&str>());
	}
    }
}

You need to use Variant<Iter> if you don't know what's inside your variant when you get it. You will then have to use get::<&str>(), get::<u32>(), etc to retreive the actual value inside the variant.

from dbus-rs.

diwic avatar diwic commented on June 28, 2024

I thought the whole point of Variant is that it can hold different types of data?

The Variant story is a bit tricky since Rust is so strongly typed. I'm working on using trait objects for better dynamics but I'm not sure I have arrived at the best design yet.

it prints out Dict(Iter("Unknown?!", "Unknown?!", "Unknown?!", "Unknown?!", "Unknown?!"), PhantomData). What is the Unknown?! value?

This is fixed in git master. It now prints Dict(Iter(DictEntry, DictEntry, DictEntry, DictEntry), PhantomData) instead (as many as there are dict entries).

from dbus-rs.

jbaldwinroberts avatar jbaldwinroberts commented on June 28, 2024

Great, thank you! I knew I must of been missing something simple :)

from dbus-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.