pub enum DeleteProgramResponse {
SuccessfulOperation,
InvalidIDSupplied,
ProgramNotFound,
}Variants§
SuccessfulOperation
Successful operation
InvalidIDSupplied
Invalid ID supplied
ProgramNotFound
program not found
Trait Implementations§
Source§impl Debug for DeleteProgramResponse
impl Debug for DeleteProgramResponse
Source§impl<'de> Deserialize<'de> for DeleteProgramResponse
impl<'de> Deserialize<'de> for DeleteProgramResponse
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
Source§impl PartialEq for DeleteProgramResponse
impl PartialEq for DeleteProgramResponse
Source§impl Serialize for DeleteProgramResponse
impl Serialize for DeleteProgramResponse
impl StructuralPartialEq for DeleteProgramResponse
Auto Trait Implementations§
impl Freeze for DeleteProgramResponse
impl RefUnwindSafe for DeleteProgramResponse
impl Send for DeleteProgramResponse
impl Sync for DeleteProgramResponse
impl Unpin for DeleteProgramResponse
impl UnwindSafe for DeleteProgramResponse
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