ant_protocol/storage/mod.rs
1// Copyright 2024 MaidSafe.net limited.
2//
3// This SAFE Network Software is licensed to you under The General Public License (GPL), version 3.
4// Unless required by applicable law or agreed to in writing, the SAFE Network Software distributed
5// under the GPL Licence is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6// KIND, either express or implied. Please review the Licences for the specific language governing
7// permissions and limitations relating to use of the SAFE Network Software.
8
9mod address;
10mod chunks;
11mod graph;
12mod header;
13mod pointer;
14mod scratchpad;
15
16pub use self::{
17 address::AddressParseError,
18 address::{ChunkAddress, GraphEntryAddress, PointerAddress, ScratchpadAddress},
19 chunks::Chunk,
20 graph::{GraphContent, GraphEntry},
21 header::{
22 try_deserialize_record, try_serialize_record, DataTypes, RecordHeader, RecordKind,
23 ValidationType,
24 },
25 pointer::{Pointer, PointerTarget},
26 scratchpad::Scratchpad,
27};