[−][src]Enum grin_core::core::transaction::KernelFeatures
Various tx kernel variants.
Variants
Plain kernel (the default for Grin txs).
Fields of Plain
fee: FeeFieldsPlain kernels have fees.
A coinbase kernel.
A kernel with an explicit lock height (and fee).
Fields of HeightLocked
"No Recent Duplicate" (NRD) kernels enforcing relative lock height between instances.
Fields of NoRecentDuplicate
Implementations
impl KernelFeatures[src]
pub fn as_u8(&self) -> u8[src]
Underlying (u8) value representing this kernel variant. This is the first byte when we serialize/deserialize the kernel features.
pub fn as_string(&self) -> String[src]
Conversion for backward compatibility.
pub fn kernel_sig_msg(&self) -> Result<Message, Error>[src]
msg = hash(features) for coinbase kernels hash(features || fee_fields) for plain kernels hash(features || fee_fields || lock_height) for height locked kernels hash(features || fee_fields || relative_height) for NRD kernels
impl KernelFeatures[src]
pub fn is_coinbase(&self) -> bool[src]
Is this a coinbase kernel?
pub fn is_plain(&self) -> bool[src]
Is this a plain kernel?
pub fn is_height_locked(&self) -> bool[src]
Is this a height locked kernel?
pub fn is_nrd(&self) -> bool[src]
Is this an NRD kernel?
Trait Implementations
impl Clone for KernelFeatures[src]
pub fn clone(&self) -> KernelFeatures[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for KernelFeatures[src]
impl Debug for KernelFeatures[src]
impl<'de> Deserialize<'de> for KernelFeatures[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<KernelFeatures> for KernelFeatures[src]
pub fn eq(&self, other: &KernelFeatures) -> bool[src]
pub fn ne(&self, other: &KernelFeatures) -> bool[src]
impl Readable for KernelFeatures[src]
impl Serialize for KernelFeatures[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for KernelFeatures[src]
impl Writeable for KernelFeatures[src]
Auto Trait Implementations
impl RefUnwindSafe for KernelFeatures[src]
impl Send for KernelFeatures[src]
impl Sync for KernelFeatures[src]
impl Unpin for KernelFeatures[src]
impl UnwindSafe for KernelFeatures[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> CloneAny for T where
T: Clone + Any,
T: Clone + Any,
pub fn clone_any(&self) -> Box<dyn CloneAny + 'static, Global>
pub fn clone_any_send(&self) -> Box<dyn CloneAny + 'static + Send, Global> where
T: Send,
T: Send,
pub fn clone_any_sync(&self) -> Box<dyn CloneAny + 'static + Sync, Global> where
T: Sync,
T: Sync,
pub fn clone_any_send_sync(
&self
) -> Box<dyn CloneAny + 'static + Send + Sync, Global> where
T: Send + Sync,
&self
) -> Box<dyn CloneAny + 'static + Send + Sync, Global> where
T: Send + Sync,
impl<T> DebugAny for T where
T: Any + Debug,
T: Any + Debug,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> UnsafeAny for T where
T: Any,
T: Any,