rsfdisk 0.2.0

Safe Rust wrapper around the `util-linux/libfdisk` C library
Documentation
// Copyright (c) 2023 Nick Piaddo
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Core objects and helper functions.

// From dependency library

// From standard library

// From this library

pub mod errors;
pub mod iter;
pub(crate) mod macros;
pub mod partition;
pub mod partition_table;
pub(crate) mod private;
pub mod prompt;
pub mod script;
pub mod utils;