pub enum ActionBuilderError {
UpdateExpressionMalformed(Variable, IntegerExpression<Variable>, InvalidUpdateError),
}Expand description
Custom Error type for a failed construction of an action
Variants§
UpdateExpressionMalformed(Variable, IntegerExpression<Variable>, InvalidUpdateError)
Error indicating that the supplied update expression was invalid
Trait Implementations§
Source§impl Clone for ActionBuilderError
impl Clone for ActionBuilderError
Source§fn clone(&self) -> ActionBuilderError
fn clone(&self) -> ActionBuilderError
Returns a duplicate of the value. Read more
1.0.0 · 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 ActionBuilderError
impl Debug for ActionBuilderError
Source§impl Display for ActionBuilderError
impl Display for ActionBuilderError
Source§impl Error for ActionBuilderError
impl Error for ActionBuilderError
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()
Auto Trait Implementations§
impl Freeze for ActionBuilderError
impl RefUnwindSafe for ActionBuilderError
impl Send for ActionBuilderError
impl Sync for ActionBuilderError
impl Unpin for ActionBuilderError
impl UnwindSafe for ActionBuilderError
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