pub struct LjungBoxResult {
pub q_statistic: f64,
pub p_value: f64,
pub max_lag: usize,
pub has_serial_correlation: bool,
pub is_valid: bool,
}Fields§
§q_statistic: f64§p_value: f64§max_lag: usize§has_serial_correlation: bool§is_valid: boolTrait Implementations§
Source§impl Clone for LjungBoxResult
impl Clone for LjungBoxResult
Source§fn clone(&self) -> LjungBoxResult
fn clone(&self) -> LjungBoxResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LjungBoxResult
impl Debug for LjungBoxResult
Auto Trait Implementations§
impl Freeze for LjungBoxResult
impl RefUnwindSafe for LjungBoxResult
impl Send for LjungBoxResult
impl Sync for LjungBoxResult
impl Unpin for LjungBoxResult
impl UnsafeUnpin for LjungBoxResult
impl UnwindSafe for LjungBoxResult
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