pub struct SkillsListResponse {
pub data: Vec<SkillsListEntry>,
}Expand description
SkillsListResponse
JSON schema
{
"title": "SkillsListResponse",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/SkillsListEntry"
}
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§data: Vec<SkillsListEntry>Trait Implementations§
Source§impl Clone for SkillsListResponse
impl Clone for SkillsListResponse
Source§fn clone(&self) -> SkillsListResponse
fn clone(&self) -> SkillsListResponse
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 SkillsListResponse
impl Debug for SkillsListResponse
Source§impl<'de> Deserialize<'de> for SkillsListResponse
impl<'de> Deserialize<'de> for SkillsListResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SkillsListResponse
impl RefUnwindSafe for SkillsListResponse
impl Send for SkillsListResponse
impl Sync for SkillsListResponse
impl Unpin for SkillsListResponse
impl UnsafeUnpin for SkillsListResponse
impl UnwindSafe for SkillsListResponse
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