pub struct SecStore { /* private fields */ }
Implementations
sourceimpl SecStore
impl SecStore
pub fn set_name(&mut self, name: Ustr) -> &mut Self
pub fn set_help(&mut self, help: Ustr) -> &mut Self
pub fn attach_cmd(&mut self, cmd: Ustr) -> &mut Self
pub fn has_cmd(&self, cmd: Ustr) -> bool
pub fn get_name(&self) -> Ustr
pub fn get_help(&self) -> Ustr
pub fn cmd_len(&self) -> usize
pub fn get_cmd(&self) -> &[Ustr]
pub fn cmd_iter(&self) -> Iter<'_, Ustr>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SecStore
impl Send for SecStore
impl Sync for SecStore
impl Unpin for SecStore
impl UnwindSafe for SecStore
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more