pub struct IntegrationListOptions {
pub limit: Option<i32>,
pub iterator: Option<String>,
pub order: Option<Ordering>,
}
Fields§
§limit: Option<i32>
Limit the number of returned items
iterator: Option<String>
The iterator returned from a prior invocation
order: Option<Ordering>
The sorting order of the returned items
Trait Implementations§
Source§impl Default for IntegrationListOptions
impl Default for IntegrationListOptions
Source§fn default() -> IntegrationListOptions
fn default() -> IntegrationListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IntegrationListOptions
impl RefUnwindSafe for IntegrationListOptions
impl Send for IntegrationListOptions
impl Sync for IntegrationListOptions
impl Unpin for IntegrationListOptions
impl UnwindSafe for IntegrationListOptions
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