pub struct S2Password {
pub key: u8,
pub encoded: String,
pub decoded: String,
}Expand description
Password header between minimap and env vars.
From e_save_map.bb: WriteByte(pwkey) + WriteLine(encodedpw$)
Fields§
§key: u8XOR key byte (random 5–250).
encoded: StringXOR-encoded password string.
decoded: StringDecoded password (key XOR each byte).
Trait Implementations§
Source§impl Clone for S2Password
impl Clone for S2Password
Source§fn clone(&self) -> S2Password
fn clone(&self) -> S2Password
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for S2Password
impl RefUnwindSafe for S2Password
impl Send for S2Password
impl Sync for S2Password
impl Unpin for S2Password
impl UnsafeUnpin for S2Password
impl UnwindSafe for S2Password
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