pub struct WaypointManager { /* private fields */ }Implementations§
Source§impl WaypointManager
impl WaypointManager
pub fn add_waypoint_stream( &self, latitude: f64, longitude: f64, body: &CelestialBody, name: String, ) -> Result<Stream<Waypoint>, RpcError>
pub fn add_waypoint( &self, latitude: f64, longitude: f64, body: &CelestialBody, name: String, ) -> Result<Waypoint, RpcError>
Source§impl WaypointManager
impl WaypointManager
pub fn add_waypoint_at_altitude_stream( &self, latitude: f64, longitude: f64, altitude: f64, body: &CelestialBody, name: String, ) -> Result<Stream<Waypoint>, RpcError>
pub fn add_waypoint_at_altitude( &self, latitude: f64, longitude: f64, altitude: f64, body: &CelestialBody, name: String, ) -> Result<Waypoint, RpcError>
Auto Trait Implementations§
impl Freeze for WaypointManager
impl RefUnwindSafe for WaypointManager
impl Send for WaypointManager
impl Sync for WaypointManager
impl Unpin for WaypointManager
impl UnwindSafe for WaypointManager
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