pub enum EditTransactionError {
Fidl(Error),
CommitError(Status),
AddError(Status),
RuleDecodeError(RuleDecodeError),
}
Variants§
Trait Implementations§
Source§impl Debug for EditTransactionError
impl Debug for EditTransactionError
Source§impl Display for EditTransactionError
impl Display for EditTransactionError
Source§impl Error for EditTransactionError
impl Error for EditTransactionError
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<Error> for EditTransactionError
impl From<Error> for EditTransactionError
Source§impl From<RuleDecodeError> for EditTransactionError
impl From<RuleDecodeError> for EditTransactionError
Source§fn from(source: RuleDecodeError) -> Self
fn from(source: RuleDecodeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EditTransactionError
impl !RefUnwindSafe for EditTransactionError
impl Send for EditTransactionError
impl Sync for EditTransactionError
impl Unpin for EditTransactionError
impl !UnwindSafe for EditTransactionError
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