pub struct ListAppsParams {
pub group_id: Option<Uuid>,
pub limit: Option<usize>,
pub offset: Option<usize>,
pub sort: AppSort,
pub group_permissions: bool,
}Fields§
§group_id: Option<Uuid>§limit: Option<usize>§offset: Option<usize>§sort: AppSort§group_permissions: boolTrait Implementations§
Source§impl Clone for ListAppsParams
impl Clone for ListAppsParams
Source§fn clone(&self) -> ListAppsParams
fn clone(&self) -> ListAppsParams
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 Default for ListAppsParams
impl Default for ListAppsParams
Source§fn default() -> ListAppsParams
fn default() -> ListAppsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAppsParams
impl<'de> Deserialize<'de> for ListAppsParams
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
Source§impl Serialize for ListAppsParams
impl Serialize for ListAppsParams
Auto Trait Implementations§
impl Freeze for ListAppsParams
impl RefUnwindSafe for ListAppsParams
impl Send for ListAppsParams
impl Sync for ListAppsParams
impl Unpin for ListAppsParams
impl UnwindSafe for ListAppsParams
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