pub struct GetFleetsFleetIdMembers200Ok { /* private fields */ }Implementations§
Source§impl GetFleetsFleetIdMembers200Ok
impl GetFleetsFleetIdMembers200Ok
Sourcepub fn new(
role_name: String,
ship_type_id: i32,
takes_fleet_warp: bool,
role: String,
squad_id: i64,
solar_system_id: i32,
character_id: i32,
join_time: String,
wing_id: i64,
) -> GetFleetsFleetIdMembers200Ok
pub fn new( role_name: String, ship_type_id: i32, takes_fleet_warp: bool, role: String, squad_id: i64, solar_system_id: i32, character_id: i32, join_time: String, wing_id: i64, ) -> GetFleetsFleetIdMembers200Ok
200 ok object
pub fn set_role_name(&mut self, role_name: String)
pub fn with_role_name(self, role_name: String) -> GetFleetsFleetIdMembers200Ok
pub fn role_name(&self) -> &String
pub fn set_ship_type_id(&mut self, ship_type_id: i32)
pub fn with_ship_type_id( self, ship_type_id: i32, ) -> GetFleetsFleetIdMembers200Ok
pub fn ship_type_id(&self) -> &i32
pub fn set_takes_fleet_warp(&mut self, takes_fleet_warp: bool)
pub fn with_takes_fleet_warp( self, takes_fleet_warp: bool, ) -> GetFleetsFleetIdMembers200Ok
pub fn takes_fleet_warp(&self) -> &bool
pub fn set_role(&mut self, role: String)
pub fn with_role(self, role: String) -> GetFleetsFleetIdMembers200Ok
pub fn role(&self) -> &String
pub fn set_squad_id(&mut self, squad_id: i64)
pub fn with_squad_id(self, squad_id: i64) -> GetFleetsFleetIdMembers200Ok
pub fn squad_id(&self) -> &i64
pub fn set_station_id(&mut self, station_id: i64)
pub fn with_station_id(self, station_id: i64) -> GetFleetsFleetIdMembers200Ok
pub fn station_id(&self) -> Option<&i64>
pub fn reset_station_id(&mut self)
pub fn set_solar_system_id(&mut self, solar_system_id: i32)
pub fn with_solar_system_id( self, solar_system_id: i32, ) -> GetFleetsFleetIdMembers200Ok
pub fn solar_system_id(&self) -> &i32
pub fn set_character_id(&mut self, character_id: i32)
pub fn with_character_id( self, character_id: i32, ) -> GetFleetsFleetIdMembers200Ok
pub fn character_id(&self) -> &i32
pub fn set_join_time(&mut self, join_time: String)
pub fn with_join_time(self, join_time: String) -> GetFleetsFleetIdMembers200Ok
pub fn join_time(&self) -> &String
pub fn set_wing_id(&mut self, wing_id: i64)
pub fn with_wing_id(self, wing_id: i64) -> GetFleetsFleetIdMembers200Ok
pub fn wing_id(&self) -> &i64
Trait Implementations§
Source§impl Debug for GetFleetsFleetIdMembers200Ok
impl Debug for GetFleetsFleetIdMembers200Ok
Source§impl<'de> Deserialize<'de> for GetFleetsFleetIdMembers200Ok
impl<'de> Deserialize<'de> for GetFleetsFleetIdMembers200Ok
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 GetFleetsFleetIdMembers200Ok
impl RefUnwindSafe for GetFleetsFleetIdMembers200Ok
impl Send for GetFleetsFleetIdMembers200Ok
impl Sync for GetFleetsFleetIdMembers200Ok
impl Unpin for GetFleetsFleetIdMembers200Ok
impl UnwindSafe for GetFleetsFleetIdMembers200Ok
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