iscsi-client-rs 0.0.9

A pure-Rust iSCSI initiator library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This module defines the structures for iSCSI Reject PDUs.
//! It includes submodules for the reject description and response.

// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2012-2025 Andrei Maltsev

#![allow(clippy::module_inception)]
/// Defines the description for iSCSI Reject PDUs.
pub mod reject_description;
/// Defines the structures for iSCSI Reject PDUs.
pub mod response;