com_croftsoft_core/security/structures/mod.rs
1// =============================================================================
2//! - Structures for the Security module
3//!
4//! # Metadata
5//! - Copyright: © 2001 - 2022 [`CroftSoft Inc`]
6//! - Author: [`David Wallace Croft`]
7//! - Rust version: 2022-11-21
8//! - Rust since: 2022-11-21
9//! - Java version: 2003-06-17
10//! - Java since: 2001-04-12
11//!
12//! # History
13//! - Adapted from the classes in the Java-based [`CroftSoft Core Library`]
14//! - com.croftsoft.core.security.Authentication
15//!
16//! [`CroftSoft Core Library`]: https://www.croftsoft.com/library/code/
17//! [`CroftSoft Inc`]: https://www.croftsoft.com/
18//! [`David Wallace Croft`]: https://www.croftsoft.com/people/david/
19// =============================================================================
20
21pub struct Authentication {
22 pub password: String,
23 pub username: String,
24}