pub struct GetMediasParams {
pub location_id: String,
pub sort_by: Option<String>,
pub sort: Option<String>,
pub query: Option<String>,
pub type: Option<String>,
pub limit: Option<u32>,
pub offset: Option<u32>,
}Fields§
§location_id: String§sort_by: Option<String>§sort: Option<String>§query: Option<String>§type: Option<String>§limit: Option<u32>§offset: Option<u32>Trait Implementations§
Source§impl Clone for GetMediasParams
impl Clone for GetMediasParams
Source§fn clone(&self) -> GetMediasParams
fn clone(&self) -> GetMediasParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetMediasParams
impl Debug for GetMediasParams
Source§impl Default for GetMediasParams
impl Default for GetMediasParams
Source§fn default() -> GetMediasParams
fn default() -> GetMediasParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMediasParams
impl<'de> Deserialize<'de> for GetMediasParams
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 GetMediasParams
impl RefUnwindSafe for GetMediasParams
impl Send for GetMediasParams
impl Sync for GetMediasParams
impl Unpin for GetMediasParams
impl UnsafeUnpin for GetMediasParams
impl UnwindSafe for GetMediasParams
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