pub struct DesktopSessionListQuery {
pub page: Option<String>,
pub per_page: Option<String>,
pub search: Option<String>,
pub tool: Option<String>,
pub git_repo_name: Option<String>,
pub sort: Option<String>,
pub time_range: Option<String>,
pub force_refresh: Option<bool>,
}Expand description
Desktop session list query payload passed through Tauri invoke.
Fields§
§page: Option<String>§per_page: Option<String>§search: Option<String>§tool: Option<String>§git_repo_name: Option<String>§sort: Option<String>§time_range: Option<String>§force_refresh: Option<bool>Trait Implementations§
Source§impl Clone for DesktopSessionListQuery
impl Clone for DesktopSessionListQuery
Source§fn clone(&self) -> DesktopSessionListQuery
fn clone(&self) -> DesktopSessionListQuery
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 DesktopSessionListQuery
impl Debug for DesktopSessionListQuery
Source§impl Default for DesktopSessionListQuery
impl Default for DesktopSessionListQuery
Source§fn default() -> DesktopSessionListQuery
fn default() -> DesktopSessionListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DesktopSessionListQuery
impl<'de> Deserialize<'de> for DesktopSessionListQuery
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 DesktopSessionListQuery
impl RefUnwindSafe for DesktopSessionListQuery
impl Send for DesktopSessionListQuery
impl Sync for DesktopSessionListQuery
impl Unpin for DesktopSessionListQuery
impl UnsafeUnpin for DesktopSessionListQuery
impl UnwindSafe for DesktopSessionListQuery
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