pub enum ScriptHashNamespace {
NativeScript = 0,
PlutusScript = 1,
PlutusScriptV2 = 2,
PlutusScriptV3 = 3,
}
Expand description
Each new language uses a different namespace for hashing its script This is because you could have a language where the same bytes have different semantics So this avoids scripts in different languages mapping to the same hash Note that the enum value here is different than the enum value for deciding the cost model of a script
Variants§
Trait Implementations§
Source§impl Clone for ScriptHashNamespace
impl Clone for ScriptHashNamespace
Source§fn clone(&self) -> ScriptHashNamespace
fn clone(&self) -> ScriptHashNamespace
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 ScriptHashNamespace
impl Debug for ScriptHashNamespace
Source§impl Ord for ScriptHashNamespace
impl Ord for ScriptHashNamespace
Source§fn cmp(&self, other: &ScriptHashNamespace) -> Ordering
fn cmp(&self, other: &ScriptHashNamespace) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ScriptHashNamespace
impl PartialEq for ScriptHashNamespace
Source§impl PartialOrd for ScriptHashNamespace
impl PartialOrd for ScriptHashNamespace
impl Eq for ScriptHashNamespace
impl StructuralPartialEq for ScriptHashNamespace
Auto Trait Implementations§
impl Freeze for ScriptHashNamespace
impl RefUnwindSafe for ScriptHashNamespace
impl Send for ScriptHashNamespace
impl Sync for ScriptHashNamespace
impl Unpin for ScriptHashNamespace
impl UnwindSafe for ScriptHashNamespace
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more