pub enum DockShipSuccess {
Status200(DockShip200Response),
}Expand description
Enum for successes of method dock_ship.
Variants§
Status200(DockShip200Response)
Response for status code 200.
Trait Implementations§
Source§impl Clone for DockShipSuccess
impl Clone for DockShipSuccess
Source§fn clone(&self) -> DockShipSuccess
fn clone(&self) -> DockShipSuccess
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 DockShipSuccess
impl RefUnwindSafe for DockShipSuccess
impl Send for DockShipSuccess
impl Sync for DockShipSuccess
impl Unpin for DockShipSuccess
impl UnwindSafe for DockShipSuccess
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