pub struct ListRequest {
pub global: bool,
pub agents: Vec<String>,
}Expand description
Request for Manager::list.
Default lists project-scope skills across all agents.
Fields§
§global: boolList global skills instead of project skills.
agents: Vec<String>Filter by agent names; empty = all agents.
Trait Implementations§
Source§impl Clone for ListRequest
impl Clone for ListRequest
Source§fn clone(&self) -> ListRequest
fn clone(&self) -> ListRequest
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 ListRequest
impl Debug for ListRequest
Source§impl Default for ListRequest
impl Default for ListRequest
Source§fn default() -> ListRequest
fn default() -> ListRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListRequest
impl RefUnwindSafe for ListRequest
impl Send for ListRequest
impl Sync for ListRequest
impl Unpin for ListRequest
impl UnsafeUnpin for ListRequest
impl UnwindSafe for ListRequest
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