pub struct ImageQuery {
pub id: Option<String>,
pub pattern: Option<String>,
pub limit: Option<u8>,
}Expand description
Query parameters for GET /api/v1/images.
Fields§
§id: Option<String>Exact IMS image ID; returns just that image when set.
pattern: Option<String>Glob pattern matched against image name; applied server-side
(service::image::get_images). Invalid glob returns 400.
limit: Option<u8>Cap on the number of images returned (most recent first).
Trait Implementations§
Source§impl Debug for ImageQuery
impl Debug for ImageQuery
Source§impl<'de> Deserialize<'de> for ImageQuery
impl<'de> Deserialize<'de> for ImageQuery
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 ImageQuery
impl IntoParams for ImageQuery
Auto Trait Implementations§
impl Freeze for ImageQuery
impl RefUnwindSafe for ImageQuery
impl Send for ImageQuery
impl Sync for ImageQuery
impl Unpin for ImageQuery
impl UnwindSafe for ImageQuery
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