pub enum V {
Undefined,
Vin(u32),
Vout(u32),
}Expand description
Enum representing whether a transaction was seen in a vout or vin
Variants§
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for V
impl<'de> Deserialize<'de> for V
Source§fn deserialize<D>(deserializer: D) -> Result<V, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<V, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for V
impl StructuralPartialEq for V
Auto Trait Implementations§
impl Freeze for V
impl RefUnwindSafe for V
impl Send for V
impl Sync for V
impl Unpin for V
impl UnsafeUnpin for V
impl UnwindSafe for V
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