pub struct Version {
pub one: u8,
pub two: u8,
pub three: u8,
}
Expand description
The Version
struct represents the version of the surml
file.
§Fields
one
- The first number in the version.two
- The second number in the version.three
- The third number in the version.
Fields§
§one: u8
§two: u8
§three: u8
Implementations§
Trait Implementations§
source§impl PartialEq for Version
impl PartialEq for Version
impl StructuralPartialEq for Version
Auto Trait Implementations§
impl Freeze for Version
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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