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