#[non_exhaustive]pub struct FutureIncompatReportConfig {
pub frequency: Option<Frequency>,
}Expand description
The [future-incompat-report] table.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.frequency: Option<Frequency>Controls how often we display a notification to the terminal when a future incompat report is available.
Trait Implementations§
Source§impl Clone for FutureIncompatReportConfig
impl Clone for FutureIncompatReportConfig
Source§fn clone(&self) -> FutureIncompatReportConfig
fn clone(&self) -> FutureIncompatReportConfig
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 FutureIncompatReportConfig
impl Debug for FutureIncompatReportConfig
Source§impl Default for FutureIncompatReportConfig
impl Default for FutureIncompatReportConfig
Source§fn default() -> FutureIncompatReportConfig
fn default() -> FutureIncompatReportConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FutureIncompatReportConfig
impl RefUnwindSafe for FutureIncompatReportConfig
impl Send for FutureIncompatReportConfig
impl Sync for FutureIncompatReportConfig
impl Unpin for FutureIncompatReportConfig
impl UnsafeUnpin for FutureIncompatReportConfig
impl UnwindSafe for FutureIncompatReportConfig
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