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