Trait openstack::common::ListResources [] [src]

pub trait ListResources<'a> {
    const DEFAULT_LIMIT: usize;

    fn list_resources<Q>(session: &'a Session, query: Q) -> Result<Vec<Self>>
    where
        Self: Sized,
        Q: Serialize + Debug
; }

Trait representing something that can be listed from a session.

Associated Constants

Default limit to use with this resource.

Required Methods

List the resources from the session.

Implementors