pub struct GetUniverseSystemJumps200Ok { /* private fields */ }Implementations§
Source§impl GetUniverseSystemJumps200Ok
impl GetUniverseSystemJumps200Ok
Sourcepub fn new(system_id: i32, ship_jumps: i32) -> GetUniverseSystemJumps200Ok
pub fn new(system_id: i32, ship_jumps: i32) -> GetUniverseSystemJumps200Ok
200 ok object
pub fn set_system_id(&mut self, system_id: i32)
pub fn with_system_id(self, system_id: i32) -> GetUniverseSystemJumps200Ok
pub fn system_id(&self) -> &i32
pub fn set_ship_jumps(&mut self, ship_jumps: i32)
pub fn with_ship_jumps(self, ship_jumps: i32) -> GetUniverseSystemJumps200Ok
pub fn ship_jumps(&self) -> &i32
Trait Implementations§
Source§impl Debug for GetUniverseSystemJumps200Ok
impl Debug for GetUniverseSystemJumps200Ok
Source§impl<'de> Deserialize<'de> for GetUniverseSystemJumps200Ok
impl<'de> Deserialize<'de> for GetUniverseSystemJumps200Ok
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetUniverseSystemJumps200Ok
impl RefUnwindSafe for GetUniverseSystemJumps200Ok
impl Send for GetUniverseSystemJumps200Ok
impl Sync for GetUniverseSystemJumps200Ok
impl Unpin for GetUniverseSystemJumps200Ok
impl UnwindSafe for GetUniverseSystemJumps200Ok
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more