pub enum AccountResolutionV1 {
Signer,
Known {
address: String,
},
PdaRef {
pda_name: String,
},
PdaInline {
seeds: Vec<PdaSeedV1>,
program_id: Option<String>,
},
UserProvided,
}Variants§
Trait Implementations§
Source§impl Clone for AccountResolutionV1
impl Clone for AccountResolutionV1
Source§fn clone(&self) -> AccountResolutionV1
fn clone(&self) -> AccountResolutionV1
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 AccountResolutionV1
impl Debug for AccountResolutionV1
Source§impl<'de> Deserialize<'de> for AccountResolutionV1
impl<'de> Deserialize<'de> for AccountResolutionV1
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 PartialEq for AccountResolutionV1
impl PartialEq for AccountResolutionV1
Source§impl Serialize for AccountResolutionV1
impl Serialize for AccountResolutionV1
impl StructuralPartialEq for AccountResolutionV1
Auto Trait Implementations§
impl Freeze for AccountResolutionV1
impl RefUnwindSafe for AccountResolutionV1
impl Send for AccountResolutionV1
impl Sync for AccountResolutionV1
impl Unpin for AccountResolutionV1
impl UnsafeUnpin for AccountResolutionV1
impl UnwindSafe for AccountResolutionV1
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