pub trait ParsedGraphqlResponseExt<T>where
for<'de> T: Deserialize<'de>,{
// Required methods
fn from_str(body_as_str: &str) -> Result<Self, PrimaBridgeError>
where Self: Sized;
fn get_errors(&self) -> Vec<Error>;
fn has_parsed_data(&self) -> bool;
}Required Methods§
fn from_str(body_as_str: &str) -> Result<Self, PrimaBridgeError>where
Self: Sized,
fn get_errors(&self) -> Vec<Error>
fn has_parsed_data(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".