pub struct GetImagesParams {
pub id: Option<String>,
pub pattern: Option<String>,
pub since: Option<NaiveDateTime>,
pub until: Option<NaiveDateTime>,
pub limit: Option<u8>,
}Expand description
Typed parameters for fetching IMS 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. Invalid glob returns HTTP 400.
since: Option<NaiveDateTime>Lower-bound timestamp (images created at or after this point). Inclusive.
until: Option<NaiveDateTime>Upper-bound timestamp (images created at or before this point). Inclusive.
limit: Option<u8>Cap on the number of images returned (the newest N; listed oldest first, newest last).
Auto Trait Implementations§
impl Freeze for GetImagesParams
impl RefUnwindSafe for GetImagesParams
impl Send for GetImagesParams
impl Sync for GetImagesParams
impl Unpin for GetImagesParams
impl UnsafeUnpin for GetImagesParams
impl UnwindSafe for GetImagesParams
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