Crate libblkid_rs

source ·
Expand description

§libblkid-rs

libblkid_rs provides programmatic access in Rust to the C library libblkid.

§Design

The organization of the modules reflects the organization of the modules in the C library. The main goal of this library is to maintain the same general structure while taking advantage of Rust idioms.

§List of methods modified

  • blkid_devno_to_wholedisk - This bindings method handles the buffer internally and therefore does not require a buffer argument. The limit for the maximum size of the returned device name is 4096 bytes. Please open an issue if more characters are required.
  • blkid_get_dev_size - This method takes a &Path in the bindings and provides libblkid with the desired file descriptor.

Re-exports§

Modules§

  • Module containing all typed constants

Structs§

Enums§

  • Error representing all errors returned by binding methods

Functions§

  • Encode potentially unsafe characters in the given string parameter.
  • Find the path of a device matching an unparsed tag or a path to a device mapper node such as /dev/dm-0
  • Find the path of a device matching a tag
  • Get library version
  • Get the name of a partition type at the given index in the libblkid internal state.
  • Get the name and flags of a superblock at the given index in the libblkid internal state.
  • Check if the given string containing a filesystem name is a known filesystem type.
  • Checks whether the name provided is a known partition type.
  • Parse a tag string into a tuple of type and value
  • Parse a version string into a version code
  • Generate a safe string that allows ascii, hex-escaping, and utf8. Whitespaces become _.
  • Send a uevent to a device specified by the device path

Type Aliases§