#[non_exhaustive]pub enum ComposeError {
Build(BuildError),
Validation(ValidationError),
}Expand description
Error produced while composing a generated weave.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Build(BuildError)
A scoped composer operation was rejected before final validation.
Validation(ValidationError)
The complete generated graph failed normal weave validation.
Trait Implementations§
Source§impl Clone for ComposeError
impl Clone for ComposeError
Source§fn clone(&self) -> ComposeError
fn clone(&self) -> ComposeError
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 moreSource§impl Debug for ComposeError
impl Debug for ComposeError
Source§impl Display for ComposeError
impl Display for ComposeError
impl Eq for ComposeError
Source§impl Error for ComposeError
Available on crate feature std only.
impl Error for ComposeError
Available on crate feature
std only.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 From<BuildError> for ComposeError
impl From<BuildError> for ComposeError
Source§fn from(value: BuildError) -> Self
fn from(value: BuildError) -> Self
Converts to this type from the input type.
Source§impl From<ValidationError> for ComposeError
impl From<ValidationError> for ComposeError
Source§fn from(value: ValidationError) -> Self
fn from(value: ValidationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ComposeError
impl PartialEq for ComposeError
impl StructuralPartialEq for ComposeError
Auto Trait Implementations§
impl Freeze for ComposeError
impl RefUnwindSafe for ComposeError
impl Send for ComposeError
impl Sync for ComposeError
impl Unpin for ComposeError
impl UnsafeUnpin for ComposeError
impl UnwindSafe for ComposeError
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