pub struct MnxDocumentMnx {
pub support: Option<MnxDocumentMnxSupport>,
pub version: i64,
}Expand description
MnxDocumentMnx
JSON schema
{
"type": "object",
"required": [
"version"
],
"properties": {
"support": {
"type": "object",
"properties": {
"useAccidentalDisplay": {
"type": "boolean"
}
},
"additionalProperties": false
},
"version": {
"type": "integer"
}
},
"additionalProperties": false
}Fields§
§support: Option<MnxDocumentMnxSupport>§version: i64Implementations§
Source§impl MnxDocumentMnx
impl MnxDocumentMnx
pub fn builder() -> MnxDocumentMnx
Trait Implementations§
Source§impl Clone for MnxDocumentMnx
impl Clone for MnxDocumentMnx
Source§fn clone(&self) -> MnxDocumentMnx
fn clone(&self) -> MnxDocumentMnx
Returns a duplicate 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 MnxDocumentMnx
impl Debug for MnxDocumentMnx
Source§impl<'de> Deserialize<'de> for MnxDocumentMnx
impl<'de> Deserialize<'de> for MnxDocumentMnx
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<&MnxDocumentMnx> for MnxDocumentMnx
impl From<&MnxDocumentMnx> for MnxDocumentMnx
Source§fn from(value: &MnxDocumentMnx) -> Self
fn from(value: &MnxDocumentMnx) -> Self
Converts to this type from the input type.
Source§impl From<MnxDocumentMnx> for MnxDocumentMnx
impl From<MnxDocumentMnx> for MnxDocumentMnx
Source§fn from(value: MnxDocumentMnx) -> Self
fn from(value: MnxDocumentMnx) -> Self
Converts to this type from the input type.
Source§impl Serialize for MnxDocumentMnx
impl Serialize for MnxDocumentMnx
Source§impl TryFrom<MnxDocumentMnx> for MnxDocumentMnx
impl TryFrom<MnxDocumentMnx> for MnxDocumentMnx
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MnxDocumentMnx) -> Result<Self, ConversionError>
fn try_from(value: MnxDocumentMnx) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MnxDocumentMnx
impl RefUnwindSafe for MnxDocumentMnx
impl Send for MnxDocumentMnx
impl Sync for MnxDocumentMnx
impl Unpin for MnxDocumentMnx
impl UnwindSafe for MnxDocumentMnx
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