pub struct ListFileService {
pub uri: String,
pub page: Option<i32>,
pub page_size: Option<i32>,
pub order_by: Option<String>,
pub order_direction: Option<String>,
pub next_page_token: Option<String>,
}Expand description
List file service parameters
Fields§
§uri: String§page: Option<i32>§page_size: Option<i32>§order_by: Option<String>§order_direction: Option<String>§next_page_token: Option<String>Trait Implementations§
Source§impl Clone for ListFileService
impl Clone for ListFileService
Source§fn clone(&self) -> ListFileService
fn clone(&self) -> ListFileService
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 ListFileService
impl Debug for ListFileService
Source§impl<'de> Deserialize<'de> for ListFileService
impl<'de> Deserialize<'de> for ListFileService
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 ListFileService
impl RefUnwindSafe for ListFileService
impl Send for ListFileService
impl Sync for ListFileService
impl Unpin for ListFileService
impl UnsafeUnpin for ListFileService
impl UnwindSafe for ListFileService
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