pub struct Table {
pub entries: Vec<Entry>,
pub updated: Option<String>,
pub user_path: Option<PathBuf>,
pub warnings: Vec<String>,
}Expand description
The effective table, plus anything the user should be told about how it was built. A bad user file must never take the built-in prices down with it, and must never be swallowed either: it is reported and the built-ins stand.
Fields§
§entries: Vec<Entry>§updated: Option<String>§user_path: Option<PathBuf>§warnings: Vec<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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