pub struct KeyStore { /* private fields */ }Implementations§
Source§impl KeyStore
impl KeyStore
pub fn get_instance(env: &mut JNIEnv<'_>, store: &str) -> JResult<KeyStore>
pub fn load(&self, env: &mut JNIEnv<'_>) -> JResult<()>
pub fn contains_alias(&self, env: &mut JNIEnv<'_>, alias: &str) -> JResult<bool>
pub fn get_key(&self, env: &mut JNIEnv<'_>, alias: &str) -> JResult<Option<Key>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeyStore
impl RefUnwindSafe for KeyStore
impl Send for KeyStore
impl Sync for KeyStore
impl Unpin for KeyStore
impl UnwindSafe for KeyStore
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