pub enum ConventionAttachDef {
Resolved {
name: String,
fields: Vec<ConventionAttachFieldDef>,
},
Unresolved(String),
}Expand description
Wire mirror of brink_ir::ConventionAttachSchema — issue #2111 finding
1’s resolved field list, carried all the way to the wire shape rather
than collapsing back to a bare name.
Variants§
Trait Implementations§
Source§impl Clone for ConventionAttachDef
impl Clone for ConventionAttachDef
Source§fn clone(&self) -> ConventionAttachDef
fn clone(&self) -> ConventionAttachDef
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 ConventionAttachDef
impl Debug for ConventionAttachDef
impl Eq for ConventionAttachDef
Source§impl PartialEq for ConventionAttachDef
impl PartialEq for ConventionAttachDef
impl StructuralPartialEq for ConventionAttachDef
Auto Trait Implementations§
impl Freeze for ConventionAttachDef
impl RefUnwindSafe for ConventionAttachDef
impl Send for ConventionAttachDef
impl Sync for ConventionAttachDef
impl Unpin for ConventionAttachDef
impl UnsafeUnpin for ConventionAttachDef
impl UnwindSafe for ConventionAttachDef
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