rvk_objects 0.2.0

Crate providing objects for use with VK (VKontakte) API
Documentation
  • Coverage
  • 6.22%
    69 out of 1109 items documented0 out of 123 items with examples
  • Size
  • Source code size: 49.42 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 41.29 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 34s Average build duration of successful builds.
  • all releases: 34s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • awaitlink/rvk
    24 7 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • u32i64

Represents various objects that are returned as JSON by the VK API.

It has two complementary crates: rvk, which allows accessing the API, and rvk_methods, which provides methods to avoid the need to specify them as strings in rvk (it depends on rvk to call the methods). These crates can also be used separately.

Note that for rvk_methods and rvk_objects, the supported versions of the VK API may be different. Consult the API_VERSION constant in these crates to learn which versions they support.

See here for an example of using all 3 crates.

Note: type and ref fields

Since type and ref are Rust keywords, an underscore (_) is added at the end of these:

  • type -> type_,
  • ref -> ref_.

Note

Due to the nature of the VK API documentation, it is not always clear if the value is always passed or not, and sometimes the data type is not defined.

If you spot any mistakes or bugs, please report them!