pub struct ActorListOptions {
pub offset: Option<i64>,
pub limit: Option<i64>,
pub desc: Option<bool>,
pub my: Option<bool>,
pub sort_by: Option<String>,
}Expand description
Options for listing Actors (GET /v2/actors).
Fields§
§offset: Option<i64>Number of Actors to skip.
limit: Option<i64>Maximum number of Actors to return.
desc: Option<bool>Return Actors newest-first.
my: Option<bool>If true, return only Actors owned by the current user.
sort_by: Option<String>Sort key, e.g. createdAt or stats.lastRunStartedAt.
Trait Implementations§
Source§impl Clone for ActorListOptions
impl Clone for ActorListOptions
Source§fn clone(&self) -> ActorListOptions
fn clone(&self) -> ActorListOptions
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 ActorListOptions
impl Debug for ActorListOptions
Source§impl Default for ActorListOptions
impl Default for ActorListOptions
Source§fn default() -> ActorListOptions
fn default() -> ActorListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ActorListOptions
impl RefUnwindSafe for ActorListOptions
impl Send for ActorListOptions
impl Sync for ActorListOptions
impl Unpin for ActorListOptions
impl UnsafeUnpin for ActorListOptions
impl UnwindSafe for ActorListOptions
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