pub struct ActorQuery {
pub path_prefix: Option<String>,
pub state: Option<ActorState>,
}Expand description
Filter for actor list / info queries.
Fields§
§path_prefix: Option<String>Only include actors whose path starts with this prefix.
state: Option<ActorState>Only include actors in this state.
Implementations§
Trait Implementations§
Source§impl Clone for ActorQuery
impl Clone for ActorQuery
Source§fn clone(&self) -> ActorQuery
fn clone(&self) -> ActorQuery
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 ActorQuery
impl Debug for ActorQuery
Source§impl Default for ActorQuery
impl Default for ActorQuery
Source§fn default() -> ActorQuery
fn default() -> ActorQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ActorQuery
impl RefUnwindSafe for ActorQuery
impl Send for ActorQuery
impl Sync for ActorQuery
impl Unpin for ActorQuery
impl UnsafeUnpin for ActorQuery
impl UnwindSafe for ActorQuery
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