pub struct VyperEvent {
pub name: String,
pub fields: Vec<(String, VyperType, bool)>,
pub doc: Option<String>,
}Expand description
A Vyper event definition.
Fields§
§name: String§fields: Vec<(String, VyperType, bool)>(name, ty, indexed)
doc: Option<String>Trait Implementations§
Source§impl Clone for VyperEvent
impl Clone for VyperEvent
Source§fn clone(&self) -> VyperEvent
fn clone(&self) -> VyperEvent
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 moreAuto Trait Implementations§
impl Freeze for VyperEvent
impl RefUnwindSafe for VyperEvent
impl Send for VyperEvent
impl Sync for VyperEvent
impl Unpin for VyperEvent
impl UnsafeUnpin for VyperEvent
impl UnwindSafe for VyperEvent
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