[][src]Struct rfesi::groups::CharacterGroup

pub struct CharacterGroup<'a> { /* fields omitted */ }

Endpoints for Character

Implementations

impl<'a> CharacterGroup<'a>[src]

pub async fn get_public_info<'_>(
    &'_ self,
    character_id: u64
) -> EsiResult<CharacterPublicInfo>
[src]

Get a character's public information.

pub async fn get_history<'_>(
    &'_ self,
    character_id: u64
) -> EsiResult<Vec<CorporationHistoryItem>>
[src]

Get a character's corporation history.

pub async fn get_portrait<'_>(
    &'_ self,
    character_id: u64
) -> EsiResult<CharacterPortraitInfo>
[src]

Get a character's portrait URLs on the image server.

pub async fn get_affiliation<'_, '_>(
    &'_ self,
    character_ids: &'_ [u64]
) -> EsiResult<Vec<CharacterAffiliation>>
[src]

Get character affiliations.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for CharacterGroup<'a>

impl<'a> Send for CharacterGroup<'a>

impl<'a> Sync for CharacterGroup<'a>

impl<'a> Unpin for CharacterGroup<'a>

impl<'a> !UnwindSafe for CharacterGroup<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.