Struct arnak::BoardGameGeekApi
source · pub struct BoardGameGeekApi<'api> { /* private fields */ }Expand description
API for making requests to the Board Game Geek API.
Implementations§
source§impl<'api> BoardGameGeekApi<'api>
impl<'api> BoardGameGeekApi<'api>
sourcepub fn collection(&self) -> CollectionApi<'_, CollectionItem>
pub fn collection(&self) -> CollectionApi<'_, CollectionItem>
Returns the collection endpoint of the API, which is used for querying a specific user’s board game collection.
sourcepub fn collection_brief(&self) -> CollectionApi<'_, CollectionItemBrief>
pub fn collection_brief(&self) -> CollectionApi<'_, CollectionItemBrief>
Returns the collection endpoint of the API, which is used for querying a specific user’s board game collection.
sourcepub fn hot_list(&self) -> HotListApi<'_>
pub fn hot_list(&self) -> HotListApi<'_>
Returns the hot list endpoint of the API, which is used for querying the current trending board games.
Trait Implementations§
Auto Trait Implementations§
impl<'api> Freeze for BoardGameGeekApi<'api>
impl<'api> !RefUnwindSafe for BoardGameGeekApi<'api>
impl<'api> Send for BoardGameGeekApi<'api>
impl<'api> Sync for BoardGameGeekApi<'api>
impl<'api> Unpin for BoardGameGeekApi<'api>
impl<'api> !UnwindSafe for BoardGameGeekApi<'api>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more