[][src]Struct rfesi::groups::AssetsGroup

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

Endpoints for Assets

Implementations

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

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

Get a character's assets.

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

Get locations of some of a character's assets.

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

Get names of some of a character's assets.

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

Get a corporation's assets.

Requires the auth'd character to be a director/+ in the corp.

pub async fn get_corporation_assets_locations<'_, '_>(
    &'_ self,
    corporation_id: u64,
    item_ids: &'_ [u64]
) -> EsiResult<Vec<AssetLocation>>
[src]

Get locations of some of a corporation's assets.

Requires the auth'd character to be a director/+ in the corp.

pub async fn get_corporation_assets_names<'_, '_>(
    &'_ self,
    corporation_id: u64,
    item_ids: &'_ [u64]
) -> EsiResult<Vec<AssetName>>
[src]

Get names of some of a corporation's assets.

Requires the auth'd character to be a director/+ in the corp.

Auto Trait Implementations

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

impl<'a> Send for AssetsGroup<'a>

impl<'a> Sync for AssetsGroup<'a>

impl<'a> Unpin for AssetsGroup<'a>

impl<'a> !UnwindSafe for AssetsGroup<'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.