pub enum InstructionByteDeltaValue {
AccountLink(AccountLinkNode),
ArgumentValue(ArgumentValueNode),
NumberValue(NumberValueNode),
ResolverValue(ResolverValueNode),
}Variants§
AccountLink(AccountLinkNode)
ArgumentValue(ArgumentValueNode)
NumberValue(NumberValueNode)
ResolverValue(ResolverValueNode)
Trait Implementations§
Source§impl Clone for InstructionByteDeltaValue
impl Clone for InstructionByteDeltaValue
Source§fn clone(&self) -> InstructionByteDeltaValue
fn clone(&self) -> InstructionByteDeltaValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InstructionByteDeltaValue
impl Debug for InstructionByteDeltaValue
Source§impl<'de> Deserialize<'de> for InstructionByteDeltaValue
impl<'de> Deserialize<'de> for InstructionByteDeltaValue
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<AccountLinkNode> for InstructionByteDeltaValue
impl From<AccountLinkNode> for InstructionByteDeltaValue
Source§fn from(value: AccountLinkNode) -> Self
fn from(value: AccountLinkNode) -> Self
Converts to this type from the input type.
Source§impl From<ArgumentValueNode> for InstructionByteDeltaValue
impl From<ArgumentValueNode> for InstructionByteDeltaValue
Source§fn from(value: ArgumentValueNode) -> Self
fn from(value: ArgumentValueNode) -> Self
Converts to this type from the input type.
Source§impl From<NumberValueNode> for InstructionByteDeltaValue
impl From<NumberValueNode> for InstructionByteDeltaValue
Source§fn from(value: NumberValueNode) -> Self
fn from(value: NumberValueNode) -> Self
Converts to this type from the input type.
Source§impl From<ResolverValueNode> for InstructionByteDeltaValue
impl From<ResolverValueNode> for InstructionByteDeltaValue
Source§fn from(value: ResolverValueNode) -> Self
fn from(value: ResolverValueNode) -> Self
Converts to this type from the input type.
impl NodeUnionTrait for InstructionByteDeltaValue
Source§impl PartialEq for InstructionByteDeltaValue
impl PartialEq for InstructionByteDeltaValue
Source§fn eq(&self, other: &InstructionByteDeltaValue) -> bool
fn eq(&self, other: &InstructionByteDeltaValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InstructionByteDeltaValue
Auto Trait Implementations§
impl Freeze for InstructionByteDeltaValue
impl RefUnwindSafe for InstructionByteDeltaValue
impl Send for InstructionByteDeltaValue
impl Sync for InstructionByteDeltaValue
impl Unpin for InstructionByteDeltaValue
impl UnsafeUnpin for InstructionByteDeltaValue
impl UnwindSafe for InstructionByteDeltaValue
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