pub struct Keys { /* private fields */ }Implementations§
Source§impl Keys
impl Keys
pub fn open_file(&self) -> &Vec<String>
pub fn go_up(&self) -> &Vec<String>
pub fn go_down(&self) -> &Vec<String>
pub fn go_parent(&self) -> &Vec<String>
pub fn go_into_dir(&self) -> &Vec<String>
pub fn quit(&self) -> &Vec<String>
pub fn delete(&self) -> &Vec<String>
pub fn copy(&self) -> &Vec<String>
pub fn paste(&self) -> &Vec<String>
pub fn rename(&self) -> &Vec<String>
pub fn create(&self) -> &Vec<String>
pub fn create_directory(&self) -> &Vec<String>
pub fn filter(&self) -> &Vec<String>
pub fn toggle_marker(&self) -> &Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Keys
impl<'de> Deserialize<'de> for Keys
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Keys
impl RefUnwindSafe for Keys
impl Send for Keys
impl Sync for Keys
impl Unpin for Keys
impl UnwindSafe for Keys
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