pub struct StructDef {
pub generics: Option<Generics>,
pub refined_by: Option<RefineParams>,
pub fields: Vec<Option<Ty>>,
pub opaque: bool,
pub invariants: Vec<Expr>,
}
Fields§
§generics: Option<Generics>
§refined_by: Option<RefineParams>
§fields: Vec<Option<Ty>>
§opaque: bool
§invariants: Vec<Expr>
Implementations§
Source§impl StructDef
impl StructDef
Sourcepub fn needs_resolving(&self) -> bool
pub fn needs_resolving(&self) -> bool
Whether the struct contains any path that needs to be resolved.
Sourcepub fn is_nontrivial(&self) -> bool
pub fn is_nontrivial(&self) -> bool
Is a non-trivial StructDef
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StructDef
impl RefUnwindSafe for StructDef
impl Send for StructDef
impl Sync for StructDef
impl Unpin for StructDef
impl UnwindSafe for StructDef
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