pub enum ComposeError {
Invalid(String),
Engine(TopoError),
}Expand description
Planning failure: Invalid is a caller-fixable input problem (surface the
message verbatim); Engine is a database failure unrelated to the input.
Variants§
Trait Implementations§
Source§impl Debug for ComposeError
impl Debug for ComposeError
Auto Trait Implementations§
impl !RefUnwindSafe for ComposeError
impl !UnwindSafe for ComposeError
impl Freeze for ComposeError
impl Send for ComposeError
impl Sync for ComposeError
impl Unpin for ComposeError
impl UnsafeUnpin 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