pub enum RenderRegionError {
Show 22 variants
DuplicatedRepeatStart {
tick: u32,
},
DuplicatedSegno {
tick: [u32; 2],
},
DuplicatedDsDc {
tick: [u32; 2],
},
DuplicatedFine {
tick: [u32; 2],
},
OrphanRepeatEnd {
tick: u32,
},
FineWithoutDsDc {
tick: u32,
},
SegnoWithoutDs {
tick: u32,
},
CodaWithoutDsDc {
tick: [u32; 2],
},
NoRepeatEnd {
tick: u32,
},
InvalidRegionIndex {
tick: u32,
actual: VarIndex,
expected: VarIndex,
},
RepeatInVariation {
tick: u32,
},
VariationNotClosed {
tick: u32,
},
RepeatOrVariationOnDc {
tick: u32,
},
RepeatOrVariationOnDs {
tick: u32,
},
FineNotAfterSegno {
segno_tick: u32,
fine_tick: u32,
},
NoSegnoForDs {
ds_tick: u32,
},
MoreThanTwoCodas {
tick: [u32; 3],
},
OnlyOneCoda {
tick: u32,
},
DcDsWhileRepeat {
tick: u32,
},
DcDsWhileVariation {
tick: u32,
},
SegnoWhildVariation {
tick: u32,
},
CodaAfterFine {
coda_from: u32,
coda_to: u32,
fine: u32,
},
}Variants§
DuplicatedRepeatStart
DuplicatedSegno
DuplicatedDsDc
DuplicatedFine
OrphanRepeatEnd
FineWithoutDsDc
SegnoWithoutDs
CodaWithoutDsDc
NoRepeatEnd
InvalidRegionIndex
RepeatInVariation
VariationNotClosed
RepeatOrVariationOnDc
RepeatOrVariationOnDs
FineNotAfterSegno
NoSegnoForDs
MoreThanTwoCodas
OnlyOneCoda
DcDsWhileRepeat
DcDsWhileVariation
SegnoWhildVariation
CodaAfterFine
Trait Implementations§
Source§impl Clone for RenderRegionError
impl Clone for RenderRegionError
Source§fn clone(&self) -> RenderRegionError
fn clone(&self) -> RenderRegionError
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 RenderRegionError
impl Debug for RenderRegionError
Source§impl Display for RenderRegionError
impl Display for RenderRegionError
Source§impl Error for RenderRegionError
impl Error for RenderRegionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for RenderRegionError
impl PartialEq for RenderRegionError
impl Eq for RenderRegionError
impl StructuralPartialEq for RenderRegionError
Auto Trait Implementations§
impl Freeze for RenderRegionError
impl RefUnwindSafe for RenderRegionError
impl Send for RenderRegionError
impl Sync for RenderRegionError
impl Unpin for RenderRegionError
impl UnwindSafe for RenderRegionError
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