pub enum AstVerifyDecl {
BuiltIn {
name: String,
span: Option<Span>,
},
Property {
name: String,
formula: AstVerifyFormula,
span: Option<Span>,
},
}Variants§
Trait Implementations§
Source§impl Clone for AstVerifyDecl
impl Clone for AstVerifyDecl
Source§fn clone(&self) -> AstVerifyDecl
fn clone(&self) -> AstVerifyDecl
Returns a duplicate of the value. Read more
1.0.0 · 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 AstVerifyDecl
impl Debug for AstVerifyDecl
Source§impl PartialEq for AstVerifyDecl
impl PartialEq for AstVerifyDecl
impl StructuralPartialEq for AstVerifyDecl
Auto Trait Implementations§
impl Freeze for AstVerifyDecl
impl RefUnwindSafe for AstVerifyDecl
impl Send for AstVerifyDecl
impl Sync for AstVerifyDecl
impl Unpin for AstVerifyDecl
impl UnsafeUnpin for AstVerifyDecl
impl UnwindSafe for AstVerifyDecl
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