pub struct Output {Show 14 fields
pub schema_version: i64,
pub password: String,
pub length: i64,
pub charset_id: String,
pub charset_size: i64,
pub entropy_bits: f64,
pub algorithm: String,
pub subcommand: String,
pub version: String,
pub commit: String,
pub build_date: String,
pub request_id: String,
pub timestamp_utc: String,
pub crack_time_estimates: Vec<CrackTimeEstimate>,
}Expand description
Schema-v1 envelope returned by every generation subcommand.
Fields§
§schema_version: i64§password: String§length: i64§charset_id: String§charset_size: i64§entropy_bits: f64§algorithm: String§subcommand: String§version: String§commit: String§build_date: String§request_id: String§timestamp_utc: String§crack_time_estimates: Vec<CrackTimeEstimate>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Output
impl<'de> Deserialize<'de> for Output
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 Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnsafeUnpin for Output
impl UnwindSafe for Output
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