pub enum SwitchboardAccountType {
TYPE_UNINITIALIZED = 0,
TYPE_AGGREGATOR = 1,
TYPE_FULFILLMENT_MANAGER = 2,
TYPE_JOB_DEFINITION = 3,
TYPE_FULFILLMENT_MANAGER_AUTH = 4,
TYPE_AGGREGATOR_RESULT_PARSE_OPTIMIZED = 5,
TYPE_BUNDLE = 6,
TYPE_BUNDLE_AUTH = 7,
TYPE_VRF = 8,
TYPE_VRF_PERMIT = 9,
}
Variants§
TYPE_UNINITIALIZED = 0
TYPE_AGGREGATOR = 1
TYPE_FULFILLMENT_MANAGER = 2
TYPE_JOB_DEFINITION = 3
TYPE_FULFILLMENT_MANAGER_AUTH = 4
TYPE_AGGREGATOR_RESULT_PARSE_OPTIMIZED = 5
TYPE_BUNDLE = 6
TYPE_BUNDLE_AUTH = 7
TYPE_VRF = 8
TYPE_VRF_PERMIT = 9
Trait Implementations§
Source§impl Clone for SwitchboardAccountType
impl Clone for SwitchboardAccountType
Source§fn clone(&self) -> SwitchboardAccountType
fn clone(&self) -> SwitchboardAccountType
Returns a copy 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 SwitchboardAccountType
impl Debug for SwitchboardAccountType
Source§impl Default for SwitchboardAccountType
impl Default for SwitchboardAccountType
Source§fn default() -> SwitchboardAccountType
fn default() -> SwitchboardAccountType
Returns the “default value” for a type. Read more
Source§impl<'a> From<&'a str> for SwitchboardAccountType
impl<'a> From<&'a str> for SwitchboardAccountType
Source§fn from(s: &'a str) -> SwitchboardAccountType
fn from(s: &'a str) -> SwitchboardAccountType
Converts to this type from the input type.
Source§impl From<i32> for SwitchboardAccountType
impl From<i32> for SwitchboardAccountType
Source§fn from(i: i32) -> SwitchboardAccountType
fn from(i: i32) -> SwitchboardAccountType
Converts to this type from the input type.
Source§impl PartialEq for SwitchboardAccountType
impl PartialEq for SwitchboardAccountType
impl Copy for SwitchboardAccountType
impl Eq for SwitchboardAccountType
impl StructuralPartialEq for SwitchboardAccountType
Auto Trait Implementations§
impl Freeze for SwitchboardAccountType
impl RefUnwindSafe for SwitchboardAccountType
impl Send for SwitchboardAccountType
impl Sync for SwitchboardAccountType
impl Unpin for SwitchboardAccountType
impl UnwindSafe for SwitchboardAccountType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more