pub struct Binomial<const N: u16>;
Expand description
Binomial regression with a fixed N. Non-canonical link functions are not possible at this time due to the awkward ergonomics with the const trait parameter N.
Auto Trait Implementations§
impl<const N: u16> Freeze for Binomial<N>
impl<const N: u16> RefUnwindSafe for Binomial<N>
impl<const N: u16> Send for Binomial<N>
impl<const N: u16> Sync for Binomial<N>
impl<const N: u16> Unpin for Binomial<N>
impl<const N: u16> UnwindSafe for Binomial<N>
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