pub struct Pkcs12AndPassword {
pub pkcs12: Pkcs12,
pub password: String,
}
Expand description
Pair of PKCS #12 and password.
Fields§
§pkcs12: Pkcs12
PKCS #12 file, typically containing a certificate and private key.
password: String
Password for the file.
Auto Trait Implementations§
impl Freeze for Pkcs12AndPassword
impl RefUnwindSafe for Pkcs12AndPassword
impl Send for Pkcs12AndPassword
impl Sync for Pkcs12AndPassword
impl Unpin for Pkcs12AndPassword
impl UnwindSafe for Pkcs12AndPassword
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