Remove unused CommandResponse alias

This commit is contained in:
Dirkjan Ochtman 2021-12-02 13:42:49 +01:00 committed by masalachai
parent 0a0e6ac9d5
commit f6ec331227
1 changed files with 0 additions and 4 deletions

View File

@ -4,12 +4,8 @@ use epp_client_macros::*;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::fmt::Debug; use std::fmt::Debug;
use crate::common::NoExtension;
use crate::common::{ElementName, EppObject, Extension, StringValue}; use crate::common::{ElementName, EppObject, Extension, StringValue};
/// Type corresponding to the <response> tag in an EPP response without an <extension> section
pub type CommandResponse<T> = CommandResponseWithExtension<T, NoExtension>;
/// A generic EPP Response to an EPP command with a result section, a status code and a message /// A generic EPP Response to an EPP command with a result section, a status code and a message
pub type EppCommandResponse = EppObject<CommandResponseStatus>; pub type EppCommandResponse = EppObject<CommandResponseStatus>;
/// An alias of `EppCommandResponse` indicating an EPP Error /// An alias of `EppCommandResponse` indicating an EPP Error