pub struct RecentItemsListOptions {
pub fields: Option<Vec<String>>,
pub limit: Option<i64>,
pub marker: Option<String>,
}Expand description
Optional parameters for RecentItemsManager::list.
Fields§
§fields: Option<Vec<String>>§limit: Option<i64>§marker: Option<String>Trait Implementations§
Source§impl Clone for RecentItemsListOptions
impl Clone for RecentItemsListOptions
Source§fn clone(&self) -> RecentItemsListOptions
fn clone(&self) -> RecentItemsListOptions
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 RecentItemsListOptions
impl Debug for RecentItemsListOptions
Source§impl Default for RecentItemsListOptions
impl Default for RecentItemsListOptions
Source§fn default() -> RecentItemsListOptions
fn default() -> RecentItemsListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RecentItemsListOptions
impl RefUnwindSafe for RecentItemsListOptions
impl Send for RecentItemsListOptions
impl Sync for RecentItemsListOptions
impl Unpin for RecentItemsListOptions
impl UnsafeUnpin for RecentItemsListOptions
impl UnwindSafe for RecentItemsListOptions
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