Struct sway_core::parse_tree::DelayedStructFieldResolution [−][src]
pub struct DelayedStructFieldResolution<'sc> {
pub exp: Box<Expression<'sc>>,
pub struct_name: Ident<'sc>,
pub field: Ident<'sc>,
}
Expand description
During type checking, this gets replaced with struct field access.
Fields
exp: Box<Expression<'sc>>
struct_name: Ident<'sc>
field: Ident<'sc>
Trait Implementations
Auto Trait Implementations
impl<'sc> RefUnwindSafe for DelayedStructFieldResolution<'sc>
impl<'sc> Send for DelayedStructFieldResolution<'sc>
impl<'sc> Sync for DelayedStructFieldResolution<'sc>
impl<'sc> Unpin for DelayedStructFieldResolution<'sc>
impl<'sc> UnwindSafe for DelayedStructFieldResolution<'sc>
Blanket Implementations
Mutably borrows from an owned value. Read more