pub enum FunctionsResponse {
Success {
data: ResponseData,
},
Failure {
error: FunctionsError,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for FunctionsResponse
impl RefUnwindSafe for FunctionsResponse
impl Send for FunctionsResponse
impl Sync for FunctionsResponse
impl Unpin for FunctionsResponse
impl UnwindSafe for FunctionsResponse
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