#[repr(C)]
pub enum PreferredValidatorType {
Deposit,
Withdraw,
}Expand description
Defines which validator vote account is set during the
SetPreferredValidator instruction
Variants
Deposit
Set preferred validator for deposits
Withdraw
Set preferred validator for withdraws
Trait Implementations
sourceimpl BorshSchema for PreferredValidatorType
impl BorshSchema for PreferredValidatorType
sourcefn declaration() -> Declaration
fn declaration() -> Declaration
Get the name of the type without brackets.
sourcefn add_definitions_recursively(
definitions: &mut HashMap<Declaration, Definition>
)
fn add_definitions_recursively(
definitions: &mut HashMap<Declaration, Definition>
)
Recursively, using DFS, add type definitions required for this type. For primitive types this is an empty map. Type definition explains how to serialize/deserialize a type. Read more
sourcefn add_definition(
declaration: String,
definition: Definition,
definitions: &mut HashMap<String, Definition, RandomState>
)
fn add_definition(
declaration: String,
definition: Definition,
definitions: &mut HashMap<String, Definition, RandomState>
)
Helper method to add a single type definition to the map.
fn schema_container() -> BorshSchemaContainer
sourceimpl Clone for PreferredValidatorType
impl Clone for PreferredValidatorType
sourcefn clone(&self) -> PreferredValidatorType
fn clone(&self) -> PreferredValidatorType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PreferredValidatorType
impl Debug for PreferredValidatorType
impl StructuralPartialEq for PreferredValidatorType
Auto Trait Implementations
impl RefUnwindSafe for PreferredValidatorType
impl Send for PreferredValidatorType
impl Sync for PreferredValidatorType
impl Unpin for PreferredValidatorType
impl UnwindSafe for PreferredValidatorType
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more