pub enum TirEncoding {
Hex,
Base64,
}Expand description
Encoding format for Transaction Intermediate Representation (TIR) data.
This enum specifies how TIR data is encoded when serialized.
Variants§
Trait Implementations§
Source§impl Clone for TirEncoding
impl Clone for TirEncoding
Source§fn clone(&self) -> TirEncoding
fn clone(&self) -> TirEncoding
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 TirEncoding
impl Debug for TirEncoding
Source§impl<'de> Deserialize<'de> for TirEncoding
impl<'de> Deserialize<'de> for TirEncoding
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
Auto Trait Implementations§
impl Freeze for TirEncoding
impl RefUnwindSafe for TirEncoding
impl Send for TirEncoding
impl Sync for TirEncoding
impl Unpin for TirEncoding
impl UnsafeUnpin for TirEncoding
impl UnwindSafe for TirEncoding
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