pub struct ContractsApiClient { /* private fields */ }Implementations§
Source§impl ContractsApiClient
impl ContractsApiClient
pub fn new(configuration: Rc<Configuration>) -> ContractsApiClient
Trait Implementations§
Source§impl ContractsApi for ContractsApiClient
impl ContractsApi for ContractsApiClient
fn get_characters_character_id_contracts( &self, character_id: i32, datasource: &str, if_none_match: &str, page: i32, token: &str, ) -> Result<Vec<GetCharactersCharacterIdContracts200Ok>, Error>
fn get_characters_character_id_contracts_contract_id_bids( &self, character_id: i32, contract_id: i32, datasource: &str, if_none_match: &str, token: &str, ) -> Result<Vec<GetCharactersCharacterIdContractsContractIdBids200Ok>, Error>
fn get_characters_character_id_contracts_contract_id_items( &self, character_id: i32, contract_id: i32, datasource: &str, if_none_match: &str, token: &str, ) -> Result<Vec<GetCharactersCharacterIdContractsContractIdItems200Ok>, Error>
fn get_contracts_public_bids_contract_id( &self, contract_id: i32, datasource: &str, if_none_match: &str, page: i32, ) -> Result<Vec<GetContractsPublicBidsContractId200Ok>, Error>
fn get_contracts_public_items_contract_id( &self, contract_id: i32, datasource: &str, if_none_match: &str, page: i32, ) -> Result<Vec<GetContractsPublicItemsContractId200Ok>, Error>
fn get_contracts_public_region_id( &self, region_id: i32, datasource: &str, if_none_match: &str, page: i32, ) -> Result<Vec<GetContractsPublicRegionId200Ok>, Error>
fn get_corporations_corporation_id_contracts( &self, corporation_id: i32, datasource: &str, if_none_match: &str, page: i32, token: &str, ) -> Result<Vec<GetCorporationsCorporationIdContracts200Ok>, Error>
fn get_corporations_corporation_id_contracts_contract_id_bids( &self, contract_id: i32, corporation_id: i32, datasource: &str, if_none_match: &str, page: i32, token: &str, ) -> Result<Vec<GetCorporationsCorporationIdContractsContractIdBids200Ok>, Error>
fn get_corporations_corporation_id_contracts_contract_id_items( &self, contract_id: i32, corporation_id: i32, datasource: &str, if_none_match: &str, token: &str, ) -> Result<Vec<GetCorporationsCorporationIdContractsContractIdItems200Ok>, Error>
Auto Trait Implementations§
impl Freeze for ContractsApiClient
impl !RefUnwindSafe for ContractsApiClient
impl !Send for ContractsApiClient
impl !Sync for ContractsApiClient
impl Unpin for ContractsApiClient
impl !UnwindSafe for ContractsApiClient
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more