nimble_rectify/
prelude.rs

1
2
3
4
5
6
7
8
9
10
/*
 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/nimble-rust/nimble
 * Licensed under the MIT License. See LICENSE in the project root for license information.
 */
//! This module provides a prelude with the most commonly used types from the crate.
//!
//! By importing this prelude, you gain easy access to the core types and traits
//! that are frequently used throughout the crate. This reduces the boilerplate
//! needed in user code.
pub use crate::{Rectify, RectifyCallback, RectifyError};