pub struct MnxDocumentGlobalMeasuresItemEnding {
pub class: Option<StyleClass>,
pub color: Option<Color>,
pub duration: i64,
pub numbers: Vec<i64>,
pub open: Option<bool>,
}Expand description
MnxDocumentGlobalMeasuresItemEnding
JSON schema
{
"type": "object",
"required": [
"duration"
],
"properties": {
"class": {
"$ref": "#/$defs/style-class"
},
"color": {
"$ref": "#/$defs/color"
},
"duration": {
"type": "integer"
},
"numbers": {
"type": "array",
"items": {
"type": "integer"
}
},
"open": {
"type": "boolean"
}
},
"additionalProperties": false
}Fields§
§class: Option<StyleClass>§color: Option<Color>§duration: i64§numbers: Vec<i64>§open: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for MnxDocumentGlobalMeasuresItemEnding
impl Clone for MnxDocumentGlobalMeasuresItemEnding
Source§fn clone(&self) -> MnxDocumentGlobalMeasuresItemEnding
fn clone(&self) -> MnxDocumentGlobalMeasuresItemEnding
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<'de> Deserialize<'de> for MnxDocumentGlobalMeasuresItemEnding
impl<'de> Deserialize<'de> for MnxDocumentGlobalMeasuresItemEnding
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<&MnxDocumentGlobalMeasuresItemEnding> for MnxDocumentGlobalMeasuresItemEnding
impl From<&MnxDocumentGlobalMeasuresItemEnding> for MnxDocumentGlobalMeasuresItemEnding
Source§fn from(value: &MnxDocumentGlobalMeasuresItemEnding) -> Self
fn from(value: &MnxDocumentGlobalMeasuresItemEnding) -> Self
Converts to this type from the input type.
Source§impl From<MnxDocumentGlobalMeasuresItemEnding> for MnxDocumentGlobalMeasuresItemEnding
impl From<MnxDocumentGlobalMeasuresItemEnding> for MnxDocumentGlobalMeasuresItemEnding
Source§fn from(value: MnxDocumentGlobalMeasuresItemEnding) -> Self
fn from(value: MnxDocumentGlobalMeasuresItemEnding) -> Self
Converts to this type from the input type.
Source§impl TryFrom<MnxDocumentGlobalMeasuresItemEnding> for MnxDocumentGlobalMeasuresItemEnding
impl TryFrom<MnxDocumentGlobalMeasuresItemEnding> for MnxDocumentGlobalMeasuresItemEnding
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: MnxDocumentGlobalMeasuresItemEnding,
) -> Result<Self, ConversionError>
fn try_from( value: MnxDocumentGlobalMeasuresItemEnding, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MnxDocumentGlobalMeasuresItemEnding
impl RefUnwindSafe for MnxDocumentGlobalMeasuresItemEnding
impl Send for MnxDocumentGlobalMeasuresItemEnding
impl Sync for MnxDocumentGlobalMeasuresItemEnding
impl Unpin for MnxDocumentGlobalMeasuresItemEnding
impl UnwindSafe for MnxDocumentGlobalMeasuresItemEnding
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