pub struct AdminChallengeResponse {
pub master_challenge: u32,
pub hash_challenge: u32,
}Expand description
Admin challenge response.
Fields§
§master_challenge: u32A number that admin must sent back to a master server.
hash_challenge: u32A number with which to mix a password hash.
Implementations§
Trait Implementations§
Source§impl Clone for AdminChallengeResponse
impl Clone for AdminChallengeResponse
Source§fn clone(&self) -> AdminChallengeResponse
fn clone(&self) -> AdminChallengeResponse
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 AdminChallengeResponse
impl Debug for AdminChallengeResponse
Source§impl PartialEq for AdminChallengeResponse
impl PartialEq for AdminChallengeResponse
impl StructuralPartialEq for AdminChallengeResponse
Auto Trait Implementations§
impl Freeze for AdminChallengeResponse
impl RefUnwindSafe for AdminChallengeResponse
impl Send for AdminChallengeResponse
impl Sync for AdminChallengeResponse
impl Unpin for AdminChallengeResponse
impl UnwindSafe for AdminChallengeResponse
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