pub struct Children {
pub id: String,
pub type_: String,
pub view_id: Option<String>,
}
Expand description
Children
JSON schema
{
"examples": [
{
"ID": "91",
"Type": "base_weakness",
"ViewID": "1003"
}
],
"type": "object",
"required": [
"ID",
"Type"
],
"properties": {
"ID": {
"type": "string",
"format": "integer"
},
"Type": {
"type": "string",
"format": "integer"
},
"ViewID": {
"type": "string",
"format": "integer"
}
}
}
Fields§
§id: String
§type_: String
§view_id: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Children
impl<'de> Deserialize<'de> for Children
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 Children
impl RefUnwindSafe for Children
impl Send for Children
impl Sync for Children
impl Unpin for Children
impl UnwindSafe for Children
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