pub struct Command<F32 = f32, F64 = f64> {
pub line: u64,
pub kind: CommandKind<F32, F64>,
}
Expand description
Command in the script.
It consists of line number and CommandKind
.
Fields§
§line: u64
Line number the command is defined on.
kind: CommandKind<F32, F64>
Kind of the command.
Trait Implementations§
impl<F32, F64> StructuralPartialEq for Command<F32, F64>
Auto Trait Implementations§
impl<F32, F64> Freeze for Command<F32, F64>
impl<F32, F64> RefUnwindSafe for Command<F32, F64>where
F32: RefUnwindSafe,
F64: RefUnwindSafe,
impl<F32, F64> Send for Command<F32, F64>
impl<F32, F64> Sync for Command<F32, F64>
impl<F32, F64> Unpin for Command<F32, F64>
impl<F32, F64> UnwindSafe for Command<F32, F64>where
F32: UnwindSafe,
F64: UnwindSafe,
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