pub struct ScAppClient { /* private fields */ }Expand description
Client for requests that do not require user authentication.
Implementations§
Source§impl ScAppClient
impl ScAppClient
Source§impl ScAppClient
impl ScAppClient
pub async fn get_auction_price_history( &self, region: impl Into<RegionId>, item_id: impl Into<ItemId>, offset: Option<u32>, limit: Option<u32>, ) -> Result<AuctionPriceHistory, Box<dyn Error>>
pub async fn get_auction_lots( &self, region: impl Into<RegionId>, item_id: impl Into<ItemId>, offset: Option<u32>, limit: Option<u32>, sort: Option<Sort>, order: Option<Order>, ) -> Result<AuctionLots, Box<dyn Error>>
pub async fn get_clan_information( &self, region: impl Into<RegionId>, clan_id: impl Into<ClanId>, ) -> Result<ClanInfo, Box<dyn Error>>
pub async fn get_clans_list( &self, region: impl Into<RegionId>, offset: Option<u32>, limit: Option<u32>, ) -> Result<ClansList, Box<dyn Error>>
pub async fn get_emission_information( &self, region: impl Into<RegionId>, ) -> Result<EmissionInformation, Box<dyn Error>>
Auto Trait Implementations§
impl !Freeze for ScAppClient
impl !RefUnwindSafe for ScAppClient
impl Send for ScAppClient
impl Sync for ScAppClient
impl Unpin for ScAppClient
impl UnsafeUnpin for ScAppClient
impl !UnwindSafe for ScAppClient
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