[][src]Trait mygpoclient::directory::RetrieveTopTags

pub trait RetrieveTopTags {
    fn retrieve_top_tags(&self, count: u8) -> Result<Vec<Tag>, Error>;
}

Required methods

fn retrieve_top_tags(&self, count: u8) -> Result<Vec<Tag>, Error>

Retrieve Top Tags

Parameters

  • count: number of tags to return

Examples

use mygpoclient::client::PublicClient;
use mygpoclient::directory::RetrieveTopTags;

let tags = PublicClient::default().retrieve_top_tags(10)?;
assert_eq!(10, tags.len());

See also

Loading content...

Implementors

impl RetrieveTopTags for AuthenticatedClient[src]

impl RetrieveTopTags for DeviceClient[src]

impl RetrieveTopTags for PublicClient[src]

Loading content...