pub trait FromResponse {
// Required method
fn from_response(
response: ApiResponse,
has_body: bool,
) -> Result<Self, StructureError>
where Self: Sized;
}pub trait FromResponse {
// Required method
fn from_response(
response: ApiResponse,
has_body: bool,
) -> Result<Self, StructureError>
where Self: Sized;
}