Enum hexodsp::synth_constructor::SynthError
source · [−]Expand description
Returned by SynthConstructor if some error occured while updating the graph or changing paramters.
Variants
CycleDetected
A graph cycle was detected. You can not have cycles in your graph, if you
want to do something with feedback use the FbWr
/FbRd
nodes.
BadOutputName(NodeId, String)
Unknown output name was passed into SynthConstructor somehow. Should not be possible to happen with crate::build.
UnknownParam(NodeId, String)
Unknown parameter name was passed into SynthConstructor somehow. Should not be possible to happen with crate::build.
Trait Implementations
sourceimpl Clone for SynthError
impl Clone for SynthError
sourcefn clone(&self) -> SynthError
fn clone(&self) -> SynthError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SynthError
impl Debug for SynthError
sourceimpl PartialEq<SynthError> for SynthError
impl PartialEq<SynthError> for SynthError
sourcefn eq(&self, other: &SynthError) -> bool
fn eq(&self, other: &SynthError) -> bool
impl StructuralPartialEq for SynthError
Auto Trait Implementations
impl RefUnwindSafe for SynthError
impl Send for SynthError
impl Sync for SynthError
impl Unpin for SynthError
impl UnwindSafe for SynthError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more