pub struct NamespacePageQuery {
pub page: u32,
pub page_size: u32,
pub query: Option<String>,
}Fields§
§page: u32§page_size: u32§query: Option<String>Trait Implementations§
Source§impl Clone for NamespacePageQuery
impl Clone for NamespacePageQuery
Source§fn clone(&self) -> NamespacePageQuery
fn clone(&self) -> NamespacePageQuery
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 ComposeSchema for NamespacePageQuery
impl ComposeSchema for NamespacePageQuery
Source§impl Debug for NamespacePageQuery
impl Debug for NamespacePageQuery
Source§impl<'de> Deserialize<'de> for NamespacePageQuery
impl<'de> Deserialize<'de> for NamespacePageQuery
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 IntoParams for NamespacePageQuery
impl IntoParams for NamespacePageQuery
Source§fn into_params(
parameter_in_provider: impl Fn() -> Option<ParameterIn>,
) -> Vec<Parameter>
fn into_params( parameter_in_provider: impl Fn() -> Option<ParameterIn>, ) -> Vec<Parameter>
Provide
Vec of openapi::path::Parameters to caller. The result is used in utoipa-gen library to
provide OpenAPI parameter information for the endpoint using the parameters.Source§impl Serialize for NamespacePageQuery
impl Serialize for NamespacePageQuery
Auto Trait Implementations§
impl Freeze for NamespacePageQuery
impl RefUnwindSafe for NamespacePageQuery
impl Send for NamespacePageQuery
impl Sync for NamespacePageQuery
impl Unpin for NamespacePageQuery
impl UnsafeUnpin for NamespacePageQuery
impl UnwindSafe for NamespacePageQuery
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