pub struct SkillsListParams {
pub limit: Option<u32>,
pub cursor: Option<String>,
pub q: Option<String>,
pub scope: Option<SkillScope>,
pub sort: Option<SkillSort>,
}Expand description
GET /v1/skills — the skills listing.
Fields§
§limit: Option<u32>How many skills to return.
cursor: Option<String>The cursor from a previous page’s next_cursor.
q: Option<String>Free-text search.
scope: Option<SkillScope>Whose skills to list.
sort: Option<SkillSort>How to order them.
Trait Implementations§
Source§impl Clone for SkillsListParams
impl Clone for SkillsListParams
Source§fn clone(&self) -> SkillsListParams
fn clone(&self) -> SkillsListParams
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 ContractParams for SkillsListParams
impl ContractParams for SkillsListParams
Source§impl Debug for SkillsListParams
impl Debug for SkillsListParams
Source§impl Default for SkillsListParams
impl Default for SkillsListParams
Source§fn default() -> SkillsListParams
fn default() -> SkillsListParams
Returns the “default value” for a type. Read more
impl Eq for SkillsListParams
Source§impl PartialEq for SkillsListParams
impl PartialEq for SkillsListParams
impl StructuralPartialEq for SkillsListParams
Auto Trait Implementations§
impl Freeze for SkillsListParams
impl RefUnwindSafe for SkillsListParams
impl Send for SkillsListParams
impl Sync for SkillsListParams
impl Unpin for SkillsListParams
impl UnsafeUnpin for SkillsListParams
impl UnwindSafe for SkillsListParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.