#[repr(u32)]pub enum CollectionVersion {
V0 = 0,
}
Expand description
The umbrella version of the collection.
Variants§
V0 = 0
Version 0 Wasmflow collections.
Trait Implementations§
Source§impl Clone for CollectionVersion
impl Clone for CollectionVersion
Source§fn clone(&self) -> CollectionVersion
fn clone(&self) -> CollectionVersion
Returns a copy 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 CollectionVersion
impl Debug for CollectionVersion
Source§impl Default for CollectionVersion
impl Default for CollectionVersion
Source§impl<'de> Deserialize<'de> for CollectionVersion
impl<'de> Deserialize<'de> for CollectionVersion
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<CollectionVersion> for u32
impl From<CollectionVersion> for u32
Source§fn from(v: CollectionVersion) -> Self
fn from(v: CollectionVersion) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CollectionVersion
impl PartialEq for CollectionVersion
Source§impl Serialize for CollectionVersion
impl Serialize for CollectionVersion
impl Copy for CollectionVersion
impl StructuralPartialEq for CollectionVersion
Auto Trait Implementations§
impl Freeze for CollectionVersion
impl RefUnwindSafe for CollectionVersion
impl Send for CollectionVersion
impl Sync for CollectionVersion
impl Unpin for CollectionVersion
impl UnwindSafe for CollectionVersion
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