pub enum PropertyGroupDeleteError {
Lookup {
parent: ScfEntityDescription,
name: Box<str>,
err: LookupError,
},
Delete {
description: ScfEntityDescription,
err: LibscfError,
},
}Expand description
Error deleting a property group from a service or instance.
Variants§
Trait Implementations§
Source§impl Debug for PropertyGroupDeleteError
impl Debug for PropertyGroupDeleteError
Source§impl Display for PropertyGroupDeleteError
impl Display for PropertyGroupDeleteError
Source§impl Error for PropertyGroupDeleteError
impl Error for PropertyGroupDeleteError
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 PropertyGroupDeleteError
impl RefUnwindSafe for PropertyGroupDeleteError
impl Send for PropertyGroupDeleteError
impl Sync for PropertyGroupDeleteError
impl Unpin for PropertyGroupDeleteError
impl UnsafeUnpin for PropertyGroupDeleteError
impl UnwindSafe for PropertyGroupDeleteError
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