pub struct KeysState { /* private fields */ }Implementations§
Source§impl KeysState
impl KeysState
pub fn list(&self) -> &Vec<SshKeyInfo>
pub fn list_mut(&mut self) -> &mut Vec<SshKeyInfo>
pub fn set_list(&mut self, list: Vec<SshKeyInfo>)
pub fn list_state(&self) -> &ListState
pub fn list_state_mut(&mut self) -> &mut ListState
pub fn activity(&self) -> &KeyActivityLog
pub fn activity_mut(&mut self) -> &mut KeyActivityLog
pub fn set_activity(&mut self, activity: KeyActivityLog)
pub fn push(&self) -> &KeyPushState
pub fn push_mut(&mut self) -> &mut KeyPushState
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeysState
impl !RefUnwindSafe for KeysState
impl Send for KeysState
impl Sync for KeysState
impl Unpin for KeysState
impl UnsafeUnpin for KeysState
impl !UnwindSafe for KeysState
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more