pub struct OathCredential {
pub name: String,
pub code: Result<OathCode, String>,
pub oath_type: OathType,
pub touch: bool,
pub algo: OathAlgo,
pub hidden: bool,
pub steam: bool,
}
Fields§
§name: String
§code: Result<OathCode, String>
§oath_type: OathType
§touch: bool
§algo: OathAlgo
§steam: bool
Implementations§
Trait Implementations§
Source§impl Debug for OathCredential
impl Debug for OathCredential
Source§impl PartialEq for OathCredential
impl PartialEq for OathCredential
impl StructuralPartialEq for OathCredential
Auto Trait Implementations§
impl Freeze for OathCredential
impl RefUnwindSafe for OathCredential
impl Send for OathCredential
impl Sync for OathCredential
impl Unpin for OathCredential
impl UnwindSafe for OathCredential
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