pub struct GetAlternativeFilesRequest {
pub resource: u32,
pub orderby: Option<String>,
pub sort: Option<SortOrder>,
pub type: Option<String>,
}Fields§
§resource: u32The ID of the resource whose alternative files should be returned.
orderby: Option<String>Field name to order the alternative files by.
sort: Option<SortOrder>Sort direction for the results.
type: Option<String>Filter results to only alternative files of this type.
Implementations§
Trait Implementations§
Source§impl Clone for GetAlternativeFilesRequest
impl Clone for GetAlternativeFilesRequest
Source§fn clone(&self) -> GetAlternativeFilesRequest
fn clone(&self) -> GetAlternativeFilesRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 GetAlternativeFilesRequest
impl Debug for GetAlternativeFilesRequest
impl StructuralPartialEq for GetAlternativeFilesRequest
Auto Trait Implementations§
impl Freeze for GetAlternativeFilesRequest
impl RefUnwindSafe for GetAlternativeFilesRequest
impl Send for GetAlternativeFilesRequest
impl Sync for GetAlternativeFilesRequest
impl Unpin for GetAlternativeFilesRequest
impl UnsafeUnpin for GetAlternativeFilesRequest
impl UnwindSafe for GetAlternativeFilesRequest
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