pub struct CommandCalls {
pub name: String,
pub calls: usize,
}Expand description
A command name with its invocation count.
Fields§
§name: StringName of the Tauri command.
calls: usizeNumber of times invoked during the session.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommandCalls
impl RefUnwindSafe for CommandCalls
impl Send for CommandCalls
impl Sync for CommandCalls
impl Unpin for CommandCalls
impl UnsafeUnpin for CommandCalls
impl UnwindSafe for CommandCalls
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