pub enum BreakReason {
MeasureCapacity,
ExplicitSystemBreak,
ExplicitPageBreak,
PageCapacity,
EndOfScore,
}Expand description
Explains why a system or page ended at its final measure.
Variants§
Trait Implementations§
Source§impl Clone for BreakReason
impl Clone for BreakReason
Source§fn clone(&self) -> BreakReason
fn clone(&self) -> BreakReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BreakReason
Source§impl Debug for BreakReason
impl Debug for BreakReason
Source§impl<'de> Deserialize<'de> for BreakReason
impl<'de> Deserialize<'de> for BreakReason
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
impl Eq for BreakReason
Source§impl PartialEq for BreakReason
impl PartialEq for BreakReason
Source§impl Serialize for BreakReason
impl Serialize for BreakReason
impl StructuralPartialEq for BreakReason
Auto Trait Implementations§
impl Freeze for BreakReason
impl RefUnwindSafe for BreakReason
impl Send for BreakReason
impl Sync for BreakReason
impl Unpin for BreakReason
impl UnsafeUnpin for BreakReason
impl UnwindSafe for BreakReason
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