pub trait NetResponseTrait:
AsAnyValue
+ AnyValueTrait
+ Send
+ Sync {
// Required methods
fn clone_boxed(&self) -> NetResponse;
fn status(&self) -> i32;
fn content_type(&self) -> Option<Arc<String>>;
fn body_content(&self) -> Promise<Option<Arc<String>>>;
}