pub enum GetShipCooldownSuccess {
Status200(GetShipCooldown200Response),
Status204,
}Expand description
Enum for successes of method get_ship_cooldown.
Variants§
Status200(GetShipCooldown200Response)
Response for status code 200.
Status204
Response for status code 204.
Trait Implementations§
Source§impl Clone for GetShipCooldownSuccess
impl Clone for GetShipCooldownSuccess
Source§fn clone(&self) -> GetShipCooldownSuccess
fn clone(&self) -> GetShipCooldownSuccess
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GetShipCooldownSuccess
impl RefUnwindSafe for GetShipCooldownSuccess
impl Send for GetShipCooldownSuccess
impl Sync for GetShipCooldownSuccess
impl Unpin for GetShipCooldownSuccess
impl UnwindSafe for GetShipCooldownSuccess
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