[][src]Struct heroku_rs::endpoints::teams::patch::TeamAppTransfer

pub struct TeamAppTransfer<'a> {
    pub team_id: &'a str,
    pub params: TeamAppTransferParams<'a>,
}

Team App Transfer to Account or Team

Transfer an existing team app to another Heroku account or another Heroku Team.

See Heroku documentation for more information about the account transfer

See Heroku documentation for more information about the team transfer

Fields

team_id: &'a str

team_id is the unique team identifier.

params: TeamAppTransferParams<'a>

The parameters to pass to the Heroku API

Methods

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

pub fn new(team_id: &'a str, owner_id: &'a str) -> TeamAppTransfer<'a>[src]

Trait Implementations

impl<'a> HerokuEndpoint<TeamApp, (), TeamAppTransferParams<'a>> for TeamAppTransfer<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TeamAppTransfer<'a>

impl<'a> Send for TeamAppTransfer<'a>

impl<'a> Sync for TeamAppTransfer<'a>

impl<'a> Unpin for TeamAppTransfer<'a>

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