#[non_exhaustive]pub enum ComposeError {
IncompatibleKinds {
left: &'static str,
right: &'static str,
},
IncompatibleMapEntry(String),
Apply(ApplyError),
LengthOverflow,
}Expand description
Errors composing sequential Changes.
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.
IncompatibleKinds
The root Change kinds cannot be composed sequentially.
IncompatibleMapEntry(String)
Two operations on one Map key cannot be composed.
Apply(ApplyError)
Applying a Change to an intermediate replacement failed.
LengthOverflow
The canonical composed Change exceeded a platform length limit.
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
impl Error for ComposeError
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<ApplyError> for ComposeError
impl From<ApplyError> for ComposeError
Source§fn from(source: ApplyError) -> Self
fn from(source: ApplyError) -> 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