pub enum SystemInstructionsType {
Custom(CustomSystemInstructions),
Appended(AppendedSystemInstructions),
}Expand description
The type oneof of SystemInstructions, as an owned value.
Variants§
Custom(CustomSystemInstructions)
Appended(AppendedSystemInstructions)
Trait Implementations§
Source§impl Clone for SystemInstructionsType
impl Clone for SystemInstructionsType
Source§fn clone(&self) -> SystemInstructionsType
fn clone(&self) -> SystemInstructionsType
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 SystemInstructionsType
impl Debug for SystemInstructionsType
Source§impl PartialEq for SystemInstructionsType
impl PartialEq for SystemInstructionsType
impl StructuralPartialEq for SystemInstructionsType
Auto Trait Implementations§
impl Freeze for SystemInstructionsType
impl RefUnwindSafe for SystemInstructionsType
impl Send for SystemInstructionsType
impl Sync for SystemInstructionsType
impl Unpin for SystemInstructionsType
impl UnsafeUnpin for SystemInstructionsType
impl UnwindSafe for SystemInstructionsType
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