#[repr(C)]pub enum CorpAction {
NoCorpAct = 0,
}
๐Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.
Expand description
Status of any ongoing corporate actions. (still undergoing dev)
Variantsยง
NoCorpAct = 0
๐Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.
Trait Implementationsยง
Sourceยงimpl BorshDeserialize for CorpAction
impl BorshDeserialize for CorpAction
Sourceยงimpl BorshSerialize for CorpAction
impl BorshSerialize for CorpAction
Sourceยงimpl Clone for CorpAction
impl Clone for CorpAction
Sourceยงfn clone(&self) -> CorpAction
fn clone(&self) -> CorpAction
Returns a duplicate 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 CorpAction
impl Debug for CorpAction
Sourceยงimpl Default for CorpAction
impl Default for CorpAction
Sourceยงimpl<'de> Deserialize<'de> for CorpAction
impl<'de> Deserialize<'de> for CorpAction
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 CorpAction
impl PartialEq for CorpAction
Sourceยงimpl Serialize for CorpAction
impl Serialize for CorpAction
impl Copy for CorpAction
impl Eq for CorpAction
impl StructuralPartialEq for CorpAction
Auto Trait Implementationsยง
impl Freeze for CorpAction
impl RefUnwindSafe for CorpAction
impl Send for CorpAction
impl Sync for CorpAction
impl Unpin for CorpAction
impl UnwindSafe for CorpAction
Blanket Implementationsยง
Sourceยงimpl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Sourceยงimpl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
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