pub struct LarsPath {
pub steps: Vec<LarsStep>,
}Expand description
Output of the LARS solver: ordered list of breakpoints from λ=λ_max down to λ_min (≥ 0).
Fields§
§steps: Vec<LarsStep>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LarsPath
impl RefUnwindSafe for LarsPath
impl Send for LarsPath
impl Sync for LarsPath
impl Unpin for LarsPath
impl UnsafeUnpin for LarsPath
impl UnwindSafe for LarsPath
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