pub struct SearchOrReadCommand {
pub is_search: bool,
pub is_read: bool,
pub is_list: Option<bool>,
}Expand description
Search or read command result
Fields§
§is_search: bool§is_read: bool§is_list: Option<bool>Trait Implementations§
Source§impl Clone for SearchOrReadCommand
impl Clone for SearchOrReadCommand
Source§fn clone(&self) -> SearchOrReadCommand
fn clone(&self) -> SearchOrReadCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SearchOrReadCommand
impl Debug for SearchOrReadCommand
Source§impl Default for SearchOrReadCommand
impl Default for SearchOrReadCommand
Source§fn default() -> SearchOrReadCommand
fn default() -> SearchOrReadCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SearchOrReadCommand
impl RefUnwindSafe for SearchOrReadCommand
impl Send for SearchOrReadCommand
impl Sync for SearchOrReadCommand
impl Unpin for SearchOrReadCommand
impl UnsafeUnpin for SearchOrReadCommand
impl UnwindSafe for SearchOrReadCommand
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