pub enum SerialSurfaceError {
Realization(StrictRealizationError),
Lower(LowerError),
}Expand description
Error surfaced while routing realized serial music through existing owners.
Variants§
Realization(StrictRealizationError)
Rendering to the canonical score failed.
Lower(LowerError)
MIDI lowering failed in the existing lowering owner.
Trait Implementations§
Source§impl Debug for SerialSurfaceError
impl Debug for SerialSurfaceError
Source§impl Display for SerialSurfaceError
impl Display for SerialSurfaceError
Source§impl Error for SerialSurfaceError
impl Error for SerialSurfaceError
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 From<LowerError> for SerialSurfaceError
impl From<LowerError> for SerialSurfaceError
Source§fn from(source: LowerError) -> Self
fn from(source: LowerError) -> Self
Converts to this type from the input type.
Source§impl From<StrictRealizationError> for SerialSurfaceError
impl From<StrictRealizationError> for SerialSurfaceError
Source§fn from(source: StrictRealizationError) -> Self
fn from(source: StrictRealizationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerialSurfaceError
impl RefUnwindSafe for SerialSurfaceError
impl Send for SerialSurfaceError
impl Sync for SerialSurfaceError
impl Unpin for SerialSurfaceError
impl UnsafeUnpin for SerialSurfaceError
impl UnwindSafe for SerialSurfaceError
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