pub enum DeleteProjectByIdOrNameError {
Status401(GetAllOperations401Response),
Status403(GetAllOperations403Response),
Status404(GetOperationById404Response),
UnknownValue(Value),
}Expand description
struct for typed errors of method delete_project_by_id_or_name
Variants§
Status401(GetAllOperations401Response)
Status403(GetAllOperations403Response)
Status404(GetOperationById404Response)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for DeleteProjectByIdOrNameError
impl Clone for DeleteProjectByIdOrNameError
Source§fn clone(&self) -> DeleteProjectByIdOrNameError
fn clone(&self) -> DeleteProjectByIdOrNameError
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 DeleteProjectByIdOrNameError
impl Debug for DeleteProjectByIdOrNameError
Source§impl<'de> Deserialize<'de> for DeleteProjectByIdOrNameError
impl<'de> Deserialize<'de> for DeleteProjectByIdOrNameError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeleteProjectByIdOrNameError
impl RefUnwindSafe for DeleteProjectByIdOrNameError
impl Send for DeleteProjectByIdOrNameError
impl Sync for DeleteProjectByIdOrNameError
impl Unpin for DeleteProjectByIdOrNameError
impl UnwindSafe for DeleteProjectByIdOrNameError
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