pub enum AppApi {
Ok(Value),
Missing,
Refused(String),
Failed(String),
}Expand description
One read-only forge answer, asked as the App itself.
Variants§
Ok(Value)
The call succeeded and parsed.
Missing
The forge answered 404: the thing is not there.
Refused(String)
The forge refused the App credentials.
Failed(String)
The call failed for another reason.
Auto Trait Implementations§
impl Freeze for AppApi
impl RefUnwindSafe for AppApi
impl Send for AppApi
impl Sync for AppApi
impl Unpin for AppApi
impl UnsafeUnpin for AppApi
impl UnwindSafe for AppApi
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