pub struct FormatVersion {
pub current: u16,
pub min_read: u16,
pub min_write: u16,
}Expand description
Version compatibility information
Fields§
§current: u16Current version of this format
min_read: u16Minimum supported version for reading
min_write: u16Minimum supported version for writing
Implementations§
Auto Trait Implementations§
impl Freeze for FormatVersion
impl RefUnwindSafe for FormatVersion
impl Send for FormatVersion
impl Sync for FormatVersion
impl Unpin for FormatVersion
impl UnwindSafe for FormatVersion
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