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