pub struct TransactionCodeAuth {
pub tcode: String,
pub activity: ActivityType,
pub active: bool,
}Expand description
Transaction code authorization.
Fields§
§tcode: StringTransaction code (e.g., “FB01”, “ME21N”)
activity: ActivityTypeActivity type (create, change, display, delete)
active: boolIs authorization active?
Trait Implementations§
Source§impl Clone for TransactionCodeAuth
impl Clone for TransactionCodeAuth
Source§fn clone(&self) -> TransactionCodeAuth
fn clone(&self) -> TransactionCodeAuth
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 TransactionCodeAuth
impl Debug for TransactionCodeAuth
Source§impl<'de> Deserialize<'de> for TransactionCodeAuth
impl<'de> Deserialize<'de> for TransactionCodeAuth
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TransactionCodeAuth
impl RefUnwindSafe for TransactionCodeAuth
impl Send for TransactionCodeAuth
impl Sync for TransactionCodeAuth
impl Unpin for TransactionCodeAuth
impl UnwindSafe for TransactionCodeAuth
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