Remove unused CommandResponse alias
This commit is contained in:
parent
0a0e6ac9d5
commit
f6ec331227
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue