pub struct Shot {
pub from: String,
pub to: String,
pub length: f64,
pub azimuth: f64,
pub inclination: f64,
pub up: f64,
pub down: f64,
pub left: f64,
pub right: f64,
pub flags: Option<String>,
pub comment: Option<String>,
}Fields§
§from: String§to: String§length: f64§azimuth: f64§inclination: f64§up: f64§down: f64§left: f64§right: f64§flags: Option<String>§comment: Option<String>Trait Implementations§
impl StructuralPartialEq for Shot
Auto Trait Implementations§
impl Freeze for Shot
impl RefUnwindSafe for Shot
impl Send for Shot
impl Sync for Shot
impl Unpin for Shot
impl UnwindSafe for Shot
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