pub enum DeletePropertyGroupResult {
Deleted,
DoesNotExist,
}Expand description
Result of deleting a property group.
Variants§
Deleted
The property group was deleted.
DoesNotExist
The property group was not deleted because it already didn’t exist.
Trait Implementations§
Source§impl Clone for DeletePropertyGroupResult
impl Clone for DeletePropertyGroupResult
Source§fn clone(&self) -> DeletePropertyGroupResult
fn clone(&self) -> DeletePropertyGroupResult
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 DeletePropertyGroupResult
impl Debug for DeletePropertyGroupResult
Source§impl Ord for DeletePropertyGroupResult
impl Ord for DeletePropertyGroupResult
Source§fn cmp(&self, other: &DeletePropertyGroupResult) -> Ordering
fn cmp(&self, other: &DeletePropertyGroupResult) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeletePropertyGroupResult
impl PartialEq for DeletePropertyGroupResult
Source§fn eq(&self, other: &DeletePropertyGroupResult) -> bool
fn eq(&self, other: &DeletePropertyGroupResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DeletePropertyGroupResult
impl PartialOrd for DeletePropertyGroupResult
impl Copy for DeletePropertyGroupResult
impl Eq for DeletePropertyGroupResult
impl StructuralPartialEq for DeletePropertyGroupResult
Auto Trait Implementations§
impl Freeze for DeletePropertyGroupResult
impl RefUnwindSafe for DeletePropertyGroupResult
impl Send for DeletePropertyGroupResult
impl Sync for DeletePropertyGroupResult
impl Unpin for DeletePropertyGroupResult
impl UnsafeUnpin for DeletePropertyGroupResult
impl UnwindSafe for DeletePropertyGroupResult
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