pub struct XorKeys {
pub payload: u8,
pub secret_feed: u8,
}Expand description
XOR keys for the two cipher passes the eT15wiaE family of tenants uses. Other tenants can override either or both at load time.
Fields§
§payload: u8Payload-cipher byte XOR key (JS iS). Default 50.
secret_feed: u8Secret-feed byte XOR key (JS vJ). Default 10.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for XorKeys
impl<'de> Deserialize<'de> for XorKeys
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
impl Copy for XorKeys
impl StructuralPartialEq for XorKeys
Auto Trait Implementations§
impl Freeze for XorKeys
impl RefUnwindSafe for XorKeys
impl Send for XorKeys
impl Sync for XorKeys
impl Unpin for XorKeys
impl UnsafeUnpin for XorKeys
impl UnwindSafe for XorKeys
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