pub enum TransactionAction {
None,
PassToTU,
SendAck,
SendResponse,
}Variants§
None
No action needed
PassToTU
Pass the message to the Transaction User (dialog layer)
SendAck
Send an ACK for a non-2xx final response
SendResponse
Send the response on the transport
Trait Implementations§
Source§impl Clone for TransactionAction
impl Clone for TransactionAction
Source§fn clone(&self) -> TransactionAction
fn clone(&self) -> TransactionAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransactionAction
impl Debug for TransactionAction
Source§impl PartialEq for TransactionAction
impl PartialEq for TransactionAction
impl Eq for TransactionAction
impl StructuralPartialEq for TransactionAction
Auto Trait Implementations§
impl Freeze for TransactionAction
impl RefUnwindSafe for TransactionAction
impl Send for TransactionAction
impl Sync for TransactionAction
impl Unpin for TransactionAction
impl UnsafeUnpin for TransactionAction
impl UnwindSafe for TransactionAction
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