pub trait ParsedGraphqlResponseExt<T> where
    for<'de> T: Deserialize<'de>, 
{ 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

Implementors