pub struct ApplicablePlatformsItem {
pub class: Option<String>,
pub name: Option<String>,
pub prevalence: String,
pub type_: String,
}
Expand description
ApplicablePlatformsItem
JSON schema
{
"type": "object",
"required": [
"Prevalence",
"Type"
],
"properties": {
"Class": {
"examples": [
"Language-Independent"
],
"type": "string"
},
"Name": {
"examples": [
"Javascript"
],
"type": "string"
},
"Prevalence": {
"examples": [
"Often"
],
"type": "string"
},
"Type": {
"examples": [
"Language"
],
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§class: Option<String>
§name: Option<String>
§prevalence: String
§type_: String
Trait Implementations§
Source§impl Clone for ApplicablePlatformsItem
impl Clone for ApplicablePlatformsItem
Source§fn clone(&self) -> ApplicablePlatformsItem
fn clone(&self) -> ApplicablePlatformsItem
Returns a copy 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 ApplicablePlatformsItem
impl Debug for ApplicablePlatformsItem
Source§impl<'de> Deserialize<'de> for ApplicablePlatformsItem
impl<'de> Deserialize<'de> for ApplicablePlatformsItem
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
Source§impl From<&ApplicablePlatformsItem> for ApplicablePlatformsItem
impl From<&ApplicablePlatformsItem> for ApplicablePlatformsItem
Source§fn from(value: &ApplicablePlatformsItem) -> Self
fn from(value: &ApplicablePlatformsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ApplicablePlatformsItem
impl RefUnwindSafe for ApplicablePlatformsItem
impl Send for ApplicablePlatformsItem
impl Sync for ApplicablePlatformsItem
impl Unpin for ApplicablePlatformsItem
impl UnwindSafe for ApplicablePlatformsItem
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