pub struct ConsoleApiListQuery {
pub limit: Option<usize>,
pub offset: Option<usize>,
pub prefix: Option<String>,
pub q: Option<String>,
pub sort: Option<String>,
}Fields§
§limit: Option<usize>§offset: Option<usize>§prefix: Option<String>§q: Option<String>§sort: Option<String>Trait Implementations§
Source§impl Clone for ConsoleApiListQuery
impl Clone for ConsoleApiListQuery
Source§fn clone(&self) -> ConsoleApiListQuery
fn clone(&self) -> ConsoleApiListQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConsoleApiListQuery
impl Debug for ConsoleApiListQuery
Source§impl Default for ConsoleApiListQuery
impl Default for ConsoleApiListQuery
Source§fn default() -> ConsoleApiListQuery
fn default() -> ConsoleApiListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConsoleApiListQuery
impl<'de> Deserialize<'de> for ConsoleApiListQuery
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 PartialEq for ConsoleApiListQuery
impl PartialEq for ConsoleApiListQuery
Source§fn eq(&self, other: &ConsoleApiListQuery) -> bool
fn eq(&self, other: &ConsoleApiListQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConsoleApiListQuery
impl Serialize for ConsoleApiListQuery
impl Eq for ConsoleApiListQuery
impl StructuralPartialEq for ConsoleApiListQuery
Auto Trait Implementations§
impl Freeze for ConsoleApiListQuery
impl RefUnwindSafe for ConsoleApiListQuery
impl Send for ConsoleApiListQuery
impl Sync for ConsoleApiListQuery
impl Unpin for ConsoleApiListQuery
impl UnsafeUnpin for ConsoleApiListQuery
impl UnwindSafe for ConsoleApiListQuery
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