pub trait Query<T, C>where
C: Client,{
// Required method
fn query(&self, client: &C) -> Result<T, ApiError<C::Error>>;
}Expand description
A trait which represents a query which may be made to a OpenStack service API client trat returns deserializable data. It does know nothing about required authorization, which is handled by the client.