pub struct PortableResolvedStructType {
pub type_name: String,
pub fields: Vec<PortableResolvedField>,
pub is_instruction: bool,
pub is_account: bool,
pub is_event: bool,
pub is_enum: bool,
pub enum_variants: Vec<String>,
}Fields§
§type_name: String§fields: Vec<PortableResolvedField>§is_instruction: bool§is_account: bool§is_event: bool§is_enum: bool§enum_variants: Vec<String>Trait Implementations§
Source§impl Clone for PortableResolvedStructType
impl Clone for PortableResolvedStructType
Source§fn clone(&self) -> PortableResolvedStructType
fn clone(&self) -> PortableResolvedStructType
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 PortableResolvedStructType
impl Debug for PortableResolvedStructType
Source§impl<'de> Deserialize<'de> for PortableResolvedStructType
impl<'de> Deserialize<'de> for PortableResolvedStructType
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
impl StructuralPartialEq for PortableResolvedStructType
Auto Trait Implementations§
impl Freeze for PortableResolvedStructType
impl RefUnwindSafe for PortableResolvedStructType
impl Send for PortableResolvedStructType
impl Sync for PortableResolvedStructType
impl Unpin for PortableResolvedStructType
impl UnsafeUnpin for PortableResolvedStructType
impl UnwindSafe for PortableResolvedStructType
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