pub struct LoadImagesQuery {
pub quiet: bool,
}Expand description
Query parameters for the load-images endpoint.
Fields§
§quiet: boolSuppress per-line progress output.
Trait Implementations§
Source§impl Debug for LoadImagesQuery
impl Debug for LoadImagesQuery
Source§impl Default for LoadImagesQuery
impl Default for LoadImagesQuery
Source§fn default() -> LoadImagesQuery
fn default() -> LoadImagesQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoadImagesQuery
impl<'de> Deserialize<'de> for LoadImagesQuery
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 LoadImagesQuery
impl IntoParams for LoadImagesQuery
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.Auto Trait Implementations§
impl Freeze for LoadImagesQuery
impl RefUnwindSafe for LoadImagesQuery
impl Send for LoadImagesQuery
impl Sync for LoadImagesQuery
impl Unpin for LoadImagesQuery
impl UnsafeUnpin for LoadImagesQuery
impl UnwindSafe for LoadImagesQuery
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