pub enum SsrFetchResponse {
Ok {
status: u32,
response: SsrFetchResponseContent,
},
Err {
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SsrFetchResponse
impl Clone for SsrFetchResponse
Source§fn clone(&self) -> SsrFetchResponse
fn clone(&self) -> SsrFetchResponse
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 SsrFetchResponse
impl Debug for SsrFetchResponse
Source§impl Hash for SsrFetchResponse
impl Hash for SsrFetchResponse
Source§impl JsJsonDeserialize for SsrFetchResponse
impl JsJsonDeserialize for SsrFetchResponse
fn from_json(ctx: JsJsonContext, json: JsJson) -> Result<Self, JsJsonContext>
Source§impl JsJsonSerialize for SsrFetchResponse
impl JsJsonSerialize for SsrFetchResponse
Auto Trait Implementations§
impl Freeze for SsrFetchResponse
impl RefUnwindSafe for SsrFetchResponse
impl Send for SsrFetchResponse
impl Sync for SsrFetchResponse
impl Unpin for SsrFetchResponse
impl UnwindSafe for SsrFetchResponse
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