pub struct CrackTimeEstimate {
pub profile_id: String,
pub description: String,
pub seconds: f64,
pub human_readable: String,
}Expand description
One attacker scenario applied to a credential’s entropy.
Fields§
§profile_id: String§description: String§seconds: f64§human_readable: StringTrait Implementations§
Source§impl Clone for CrackTimeEstimate
impl Clone for CrackTimeEstimate
Source§fn clone(&self) -> CrackTimeEstimate
fn clone(&self) -> CrackTimeEstimate
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 CrackTimeEstimate
impl Debug for CrackTimeEstimate
Source§impl<'de> Deserialize<'de> for CrackTimeEstimate
impl<'de> Deserialize<'de> for CrackTimeEstimate
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 CrackTimeEstimate
impl RefUnwindSafe for CrackTimeEstimate
impl Send for CrackTimeEstimate
impl Sync for CrackTimeEstimate
impl Unpin for CrackTimeEstimate
impl UnsafeUnpin for CrackTimeEstimate
impl UnwindSafe for CrackTimeEstimate
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