pub struct ReferenceFrame { /* private fields */ }Implementations§
Source§impl ReferenceFrame
impl ReferenceFrame
pub fn static_create_hybrid_stream( &self, position: &ReferenceFrame, rotation: &ReferenceFrame, velocity: &ReferenceFrame, angular_velocity: &ReferenceFrame, ) -> Result<Stream<ReferenceFrame>, RpcError>
pub fn static_create_hybrid( &self, position: &ReferenceFrame, rotation: &ReferenceFrame, velocity: &ReferenceFrame, angular_velocity: &ReferenceFrame, ) -> Result<ReferenceFrame, RpcError>
Source§impl ReferenceFrame
impl ReferenceFrame
pub fn static_create_relative_stream( &self, reference_frame: &ReferenceFrame, position: (f64, f64, f64), rotation: (f64, f64, f64, f64), velocity: (f64, f64, f64), angular_velocity: (f64, f64, f64), ) -> Result<Stream<ReferenceFrame>, RpcError>
pub fn static_create_relative( &self, reference_frame: &ReferenceFrame, position: (f64, f64, f64), rotation: (f64, f64, f64, f64), velocity: (f64, f64, f64), angular_velocity: (f64, f64, f64), ) -> Result<ReferenceFrame, RpcError>
Auto Trait Implementations§
impl Freeze for ReferenceFrame
impl RefUnwindSafe for ReferenceFrame
impl Send for ReferenceFrame
impl Sync for ReferenceFrame
impl Unpin for ReferenceFrame
impl UnwindSafe for ReferenceFrame
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