pub struct TypeNode {
pub type_name: String,
pub pubkey_fields: Vec<PubkeyFieldRef>,
}Expand description
A node in the type graph representing a type that contains pubkey fields.
Fields§
§type_name: StringThe type name (e.g. “Position”, “LbPair”).
pubkey_fields: Vec<PubkeyFieldRef>All pubkey fields found in this type.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeNode
impl RefUnwindSafe for TypeNode
impl Send for TypeNode
impl Sync for TypeNode
impl Unpin for TypeNode
impl UnsafeUnpin for TypeNode
impl UnwindSafe for TypeNode
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