pub enum VersionedBuildInfo {
V0(BuildInfo),
}Expand description
A versioned build information. This is the information that is embedded in a custom section. Currently there is one version, but the format supports future evolution.
The value is embedded in a custom section serialized using the smart
contract serialization format
(Serial trait).
Variants§
Trait Implementations§
Source§impl Clone for VersionedBuildInfo
impl Clone for VersionedBuildInfo
Source§fn clone(&self) -> VersionedBuildInfo
fn clone(&self) -> VersionedBuildInfo
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 VersionedBuildInfo
impl Debug for VersionedBuildInfo
Source§impl Deserial for VersionedBuildInfo
impl Deserial for VersionedBuildInfo
Auto Trait Implementations§
impl Freeze for VersionedBuildInfo
impl RefUnwindSafe for VersionedBuildInfo
impl Send for VersionedBuildInfo
impl Sync for VersionedBuildInfo
impl Unpin for VersionedBuildInfo
impl UnwindSafe for VersionedBuildInfo
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