pub enum Action {
Continue(Continue),
Abort(Abort),
Discard(Discard),
Reject(Reject),
Tempfail(Tempfail),
Skip(Skip),
Replycode(Replycode),
Quit(Quit),
QuitNc(QuitNc),
}Expand description
All control-flow actions combined
See the contained variants for more.
Variants§
Continue(Continue)
Abort(Abort)
Discard(Discard)
Reject(Reject)
Tempfail(Tempfail)
Skip(Skip)
Replycode(Replycode)
Quit(Quit)
QuitNc(QuitNc)
Trait Implementations§
Source§impl From<Action> for ClientMessage
impl From<Action> for ClientMessage
Source§fn from(v: Action) -> ClientMessage
fn from(v: Action) -> ClientMessage
Converts to this type from the input type.
Source§impl From<Action> for ServerMessage
impl From<Action> for ServerMessage
Source§fn from(v: Action) -> ServerMessage
fn from(v: Action) -> ServerMessage
Converts to this type from the input type.
Source§impl TryInto<Action> for ClientMessage
impl TryInto<Action> for ClientMessage
Source§impl TryInto<Action> for ServerMessage
impl TryInto<Action> for ServerMessage
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more