pub struct AngleList {
pub angles: Vec<(f64, f64)>,
}Fields§
§angles: Vec<(f64, f64)>Illumination angles (theta_x, theta_y) in radians.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AngleList
impl<'de> Deserialize<'de> for AngleList
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
Source§impl IlluminationSource for AngleList
impl IlluminationSource for AngleList
fn k_vectors(&self, optics: &Optics) -> Result<Vec<KVector>>
Source§fn frame_gains(&self) -> Result<Option<Vec<f64>>>
fn frame_gains(&self) -> Result<Option<Vec<f64>>>
Optional multiplicative intensity gain for each compiled frame.
Source§fn multiplexing_matrix(&self) -> Result<Option<MultiplexingMatrix>>
fn multiplexing_matrix(&self) -> Result<Option<MultiplexingMatrix>>
Optional incoherent source weights for each measured frame.
Auto Trait Implementations§
impl Freeze for AngleList
impl RefUnwindSafe for AngleList
impl Send for AngleList
impl Sync for AngleList
impl Unpin for AngleList
impl UnsafeUnpin for AngleList
impl UnwindSafe for AngleList
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