pub struct KillmailsApiClient { /* private fields */ }
Implementations§
Source§impl KillmailsApiClient
impl KillmailsApiClient
pub fn new(configuration: Rc<Configuration>) -> KillmailsApiClient
Trait Implementations§
Source§impl KillmailsApi for KillmailsApiClient
impl KillmailsApi for KillmailsApiClient
fn get_characters_character_id_killmails_recent( &self, character_id: i32, datasource: &str, if_none_match: &str, page: i32, token: &str, ) -> Result<Vec<GetCharactersCharacterIdKillmailsRecent200Ok>, Error>
fn get_corporations_corporation_id_killmails_recent( &self, corporation_id: i32, datasource: &str, if_none_match: &str, page: i32, token: &str, ) -> Result<Vec<GetCorporationsCorporationIdKillmailsRecent200Ok>, Error>
fn get_killmails_killmail_id_killmail_hash( &self, killmail_hash: &str, killmail_id: i32, datasource: &str, if_none_match: &str, ) -> Result<GetKillmailsKillmailIdKillmailHashOk, Error>
Auto Trait Implementations§
impl Freeze for KillmailsApiClient
impl !RefUnwindSafe for KillmailsApiClient
impl !Send for KillmailsApiClient
impl !Sync for KillmailsApiClient
impl Unpin for KillmailsApiClient
impl !UnwindSafe for KillmailsApiClient
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