blob_stream/prelude.rs
1/*
2 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/nimble-rust/nimble
3 * Licensed under the MIT License. See LICENSE in the project root for license information.
4 */
5
6//! A module that re-exports commonly used items for convenience.
7//!
8//! The `prelude` module provides easy access to commonly used types, structs, and enums across
9//! various parts of the library. By including this prelude, you can reduce the number of individual
10//! imports needed in your code.
11pub use {
12 crate::err::BlobError,
13 crate::in_logic_front::{FrontLogic, Info},
14 crate::out_logic_front::OutLogicFront,
15 crate::out_stream::OutStreamError,
16 crate::protocol::{SetChunkData, StartTransferData, TransferId},
17 crate::protocol_front::{
18 ReceiverToSenderFrontCommands, SenderToReceiverFrontCommands, SetChunkFrontData,
19 },
20};