pub struct UserImageListQuery {
pub kind: Option<ImageSize>,
}
Expand description
Query for listing. This is optional. If used, should be included as part of the query string.
kind
field must match the case as represented in the returned json body (PascalCase
?).
Fields§
§kind: Option<ImageSize>
Optionally filter by image kind. If included it will only return results of the corresponding kinds listed.
Trait Implementations§
Source§impl Debug for UserImageListQuery
impl Debug for UserImageListQuery
Source§impl<'de> Deserialize<'de> for UserImageListQuery
impl<'de> Deserialize<'de> for UserImageListQuery
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
Auto Trait Implementations§
impl Freeze for UserImageListQuery
impl RefUnwindSafe for UserImageListQuery
impl Send for UserImageListQuery
impl Sync for UserImageListQuery
impl Unpin for UserImageListQuery
impl UnwindSafe for UserImageListQuery
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