pub struct SaveImagesQuery {
pub names: Vec<String>,
}Expand description
Query parameters for the save-images endpoint. Names are repeatable —
?names=alpine&names=nginx:1.21 produces a multi-image archive.
Fields§
§names: Vec<String>Image names to include in the tar archive.
Trait Implementations§
Source§impl Debug for SaveImagesQuery
impl Debug for SaveImagesQuery
Source§impl Default for SaveImagesQuery
impl Default for SaveImagesQuery
Source§fn default() -> SaveImagesQuery
fn default() -> SaveImagesQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SaveImagesQuery
impl<'de> Deserialize<'de> for SaveImagesQuery
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 SaveImagesQuery
impl IntoParams for SaveImagesQuery
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 SaveImagesQuery
impl RefUnwindSafe for SaveImagesQuery
impl Send for SaveImagesQuery
impl Sync for SaveImagesQuery
impl Unpin for SaveImagesQuery
impl UnsafeUnpin for SaveImagesQuery
impl UnwindSafe for SaveImagesQuery
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